NewGaoKaoApi/PaymentSDK/AliPay/Domain/MybankCreditSupplychainCred...

61 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>
/// MybankCreditSupplychainCreditpayOrderQueryModel Data Structure.
/// </summary>
[Serializable]
public class MybankCreditSupplychainCreditpayOrderQueryModel : AopObject
{
/// <summary>
/// 支付宝Id
/// </summary>
[XmlElement("custom_info")]
public Member CustomInfo { get; set; }
/// <summary>
/// 结束时间
/// </summary>
[XmlElement("end_date")]
public string EndDate { get; set; }
/// <summary>
/// 分页查询的每页数据数量
/// </summary>
[XmlElement("items_per_page")]
public long ItemsPerPage { get; set; }
/// <summary>
/// 页数从1-N
/// </summary>
[XmlElement("page")]
public long Page { get; set; }
/// <summary>
/// 赊呗内部方案,调用方向服务提供方申请
/// </summary>
[XmlElement("plan_id")]
public string PlanId { get; set; }
/// <summary>
/// 开始时间
/// </summary>
[XmlElement("start_date")]
public string StartDate { get; set; }
/// <summary>
/// 查询订单状态,淘宝拍卖场景【ONWAY在途CRATE投标中VALID中标CANCEL未中标CLEAR已还款】
/// </summary>
[XmlElement("status")]
public string Status { get; set; }
/// <summary>
/// 交易来源
/// </summary>
[XmlElement("trade_source")]
public string TradeSource { get; set; }
}
}