using System; using System.Collections.Generic; using System.Linq; using System.Text; using Newtonsoft.Json; namespace POSV.Card { /// /// 取消订单 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class EleMeOrderCancelRequest { /// /// 门店ID /// [JsonProperty(PropertyName = "storeId")] public string StoreId { get; set; } /// /// 订单Id /// [JsonProperty(PropertyName = "orderId")] public string OrderId { get; set; } /// /// 取消原因 ///0-其他原因; 1-用户信息不符; 4-联系不上用户; 5-商品已经售完; 6-商家已经打烊; ///7-超出配送范围; 8-商家现在太忙; 9-用户申请取消; 11-配送出现问题; 17-不满足起送要求; /// [JsonProperty(PropertyName = "type")] public int Type { get; set; } /// /// 订单Id /// [JsonProperty(PropertyName = "remark")] public string Remark { get; set; } } }