using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// OrderItem Data Structure. /// [Serializable] public class OrderItem : AopObject { /// /// 店铺所在具体位置 /// [JsonProperty("address")] public string Address { get; set; } /// /// 品牌名称 /// [JsonProperty("brand_name")] public string BrandName { get; set; } /// /// 店铺品类 /// [JsonProperty("category")] public string Category { get; set; } /// /// 店铺所在的市 /// [JsonProperty("city")] public string City { get; set; } /// /// 订购的服务商品ID /// [JsonProperty("commodity_id")] public string CommodityId { get; set; } /// /// 订单联系人 /// [JsonProperty("contacts")] public string Contacts { get; set; } /// /// 门店创建人(已删除) /// [JsonProperty("creator")] public string Creator { get; set; } /// /// 过期时间 /// [JsonProperty("expire_date")] public string ExpireDate { get; set; } /// /// 商户名称 /// [JsonProperty("merchant_name")] public string MerchantName { get; set; } /// /// 商户PID /// [JsonProperty("merchant_pid")] public string MerchantPid { get; set; } /// /// 上架时间 /// [JsonProperty("online_time")] public string OnlineTime { get; set; } /// /// TO_DO-未实施,DOING-实施中,TO_CONFIRM-待商户确认,DONE-已完成,MERCHANT_REJECTED-商户已回绝,MERCHANT_CANCELLED-商户已取消,ISV_REJECTED-服务商已回绝,ISV_CANCELLED-服务商已取消 /// [JsonProperty("order_status")] public string OrderStatus { get; set; } /// /// 订单所属人联系方式(手机或者座机) /// [JsonProperty("phone_no")] public string PhoneNo { get; set; } /// /// 店铺所在的省份 /// [JsonProperty("province")] public string Province { get; set; } /// /// 店铺ID /// [JsonProperty("shop_id")] public string ShopId { get; set; } /// /// 店铺名称 /// [JsonProperty("shop_name")] public string ShopName { get; set; } /// /// 店铺状态(ONLINE--已上架 OFFLINE--未上架 AVAILABLE--已开通 INIT--未开通 EXPIRED--已过期) /// [JsonProperty("shop_status")] public string ShopStatus { get; set; } /// /// 待服务商接单 /// [JsonProperty("status")] public string Status { get; set; } } }