NewGaoKaoApi/PaymentSDK/AliPay/Domain/MybankCreditLoantradeBillLi...

67 lines
1.8 KiB
C#
Raw Permalink 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>
/// MybankCreditLoantradeBillListQueryModel Data Structure.
/// </summary>
[Serializable]
public class MybankCreditLoantradeBillListQueryModel : AopObject
{
/// <summary>
/// 账单编号列表最多支持20条记录查询
/// </summary>
[XmlElement("bill_no_list")]
public string BillNoList { get; set; }
/// <summary>
/// 账单状态OVD逾期CLE结清NOR正常
/// </summary>
[XmlElement("bill_status_list")]
public string BillStatusList { get; set; }
/// <summary>
/// 账单结束时间
/// </summary>
[XmlElement("end_date")]
public string EndDate { get; set; }
/// <summary>
/// 外部请求号
/// </summary>
[XmlElement("out_request_no")]
public string OutRequestNo { get; set; }
/// <summary>
/// 分页偏移量
/// </summary>
[XmlElement("page_num")]
public long PageNum { get; set; }
/// <summary>
/// 分页大小最大50
/// </summary>
[XmlElement("page_size")]
public long PageSize { get; set; }
/// <summary>
/// 方案合约编号
/// </summary>
[XmlElement("product_code")]
public string ProductCode { get; set; }
/// <summary>
/// 账单开始时间
/// </summary>
[XmlElement("start_date")]
public string StartDate { get; set; }
/// <summary>
/// 用户的基本信息包括支付宝idsite,steUserId等
/// </summary>
[XmlElement("user")]
public UserVo User { get; set; }
}
}