NewGaoKaoApi/PaymentSDK/AliPay/Domain/ZhimaMerchantContractPageQu...

67 lines
1.9 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>
/// ZhimaMerchantContractPageQueryModel Data Structure.
/// </summary>
[Serializable]
public class ZhimaMerchantContractPageQueryModel : AopObject
{
/// <summary>
/// 查询开始时间
/// </summary>
[XmlElement("begin_time")]
public string BeginTime { get; set; }
/// <summary>
/// 要查询的合约状态列表,多选 ,逗号分隔 初始化,待应约状态:INIT 生效 :EFFECT 完结: COMPLETE 关闭:CLOSE 失效:INVALID
/// </summary>
[XmlElement("contract_status_list")]
public string ContractStatusList { get; set; }
/// <summary>
/// 当前页,从1开始
/// </summary>
[XmlElement("current_page")]
public long CurrentPage { get; set; }
/// <summary>
/// 查询结束时间
/// </summary>
[XmlElement("end_time")]
public string EndTime { get; set; }
/// <summary>
/// 是否包含合约履约事件信息如打卡信息等。默认false
/// </summary>
[XmlElement("include_event_detail")]
public bool IncludeEventDetail { get; set; }
/// <summary>
/// 是否查询事项,默认false
/// </summary>
[XmlElement("include_item")]
public bool IncludeItem { get; set; }
/// <summary>
/// 发约单号
/// </summary>
[XmlElement("offer_no")]
public string OfferNo { get; set; }
/// <summary>
/// 每页条数默认5条最多支持10条
/// </summary>
[XmlElement("page_size")]
public long PageSize { get; set; }
/// <summary>
/// 应约者主体id(淘宝id/支付宝user_id/商户id)
/// </summary>
[XmlElement("sign_principal_id")]
public string SignPrincipalId { get; set; }
}
}