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