using System; using System.Collections.Generic; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// AlipayCommerceBusinessorderQueryModel Data Structure. /// [Serializable] public class AlipayCommerceBusinessorderQueryModel : AopObject { /// /// 查询办事记录的时间区间中的开始时间,格式为yyyy-MM-dd HH:mm:ss /// [JsonProperty("begin_time")] public string BeginTime { get; set; } /// /// 查询办事记录的时间区间中的结束时间,格式为yyyy-MM-dd HH:mm:ss /// [JsonProperty("end_time")] public string EndTime { get; set; } /// /// isv的appid /// [JsonProperty("isv_appid")] public string IsvAppid { get; set; } /// /// 分页查询的起始页数 /// [JsonProperty("page_num")] public string PageNum { get; set; } /// /// 分页查询的每页数据量 /// [JsonProperty("page_size")] public string PageSize { get; set; } /// /// 查询的办事记录所属服务展台(如城市服务为CITY_SERVICE,车主平台为MYCAR_SERVICE等) /// [JsonProperty("platform_type")] public string PlatformType { get; set; } /// /// 办事记录状态列表 /// [JsonProperty("status_list")] public List StatusList { get; set; } /// /// 支付宝userId /// [JsonProperty("user_id")] public string UserId { get; set; } } }