NewGaoKaoApi/PaymentSDK/AliPay/Domain/ZhimaCreditContractBorrowCr...

55 lines
1.6 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
/// <summary>
/// ZhimaCreditContractBorrowCreateModel Data Structure.
/// </summary>
[Serializable]
public class ZhimaCreditContractBorrowCreateModel : AopObject
{
/// <summary>
/// 外部类目,样例:图书馆:BOOK
/// </summary>
[XmlElement("category")]
public string Category { get; set; }
/// <summary>
/// 扩展字段,目前留空
/// </summary>
[XmlElement("ext")]
public string Ext { get; set; }
/// <summary>
/// 借书时间yyyy-MM-dd HH:mm:ss格式的时间字符串
/// </summary>
[XmlElement("gmt_borrow")]
public string GmtBorrow { get; set; }
/// <summary>
/// 应还时间yyyy-MM-dd HH:mm:ss格式的时间字符串
/// </summary>
[XmlElement("gmt_due")]
public string GmtDue { get; set; }
/// <summary>
/// 商户自定义的外部订单号,需要保障唯一性。
/// </summary>
[XmlElement("out_trans_no")]
public string OutTransNo { get; set; }
/// <summary>
/// 商户入驻芝麻服务后得到的服务id在服务入驻后台可看到
/// </summary>
[XmlElement("service_id")]
public string ServiceId { get; set; }
/// <summary>
/// 借的物品列表包括每个物品的唯一id物品类型物品名称。目前type仅支持book图书
/// </summary>
[XmlElement("subjects_borrowed")]
public string SubjectsBorrowed { get; set; }
}
}