using System; using System.Collections.Generic; using System.Linq; using System.Text; using Newtonsoft.Json; namespace POSV.Card { /// /// 门店拒单 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class MeiTuanOrderCancelRequest { /// /// 门店ID /// [JsonProperty(PropertyName = "storeId")] public string StoreId { get; set; } /// /// 订单ID /// [JsonProperty(PropertyName = "orderId")] public string OrderId { get; set; } /// /// 取消原因码 /// [JsonProperty(PropertyName = "reasonCode")] public string ReasonCode { get; set; } /// /// 取消原因 /// [JsonProperty(PropertyName = "reason")] public string Reason { get; set; } } }