using System; using System.Collections.Generic; using System.Linq; using System.Text; using Newtonsoft.Json; namespace POSV.Card { /// /// 不同意退单 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class MeiTuanOrderRefundDisagreeRequest { /// /// 门店ID /// [JsonProperty(PropertyName = "storeId")] public string StoreId { get; set; } /// /// 订单Id /// [JsonProperty(PropertyName = "orderId")] public string OrderId { get; set; } /// /// 商家不同意退单原因 /// [JsonProperty(PropertyName = "reason")] public string Reason { get; set; } } }