using System; using System.Collections.Generic; using System.Linq; using System.Text; using Newtonsoft.Json; namespace POSV.QiMai { /// /// 门店拒单 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class QiMaiOrderRefuseReceiveRequest { /// /// 门店ID /// [JsonProperty(PropertyName = "storeId")] public string StoreId { get; set; } /// /// 订单ID /// [JsonProperty(PropertyName = "orderId")] public string OrderId { get; set; } } }