using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace POSV.GuangChang { /// /// 订单详情 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class VposOrderDetailRequest { /// /// 门店ID /// [JsonProperty(PropertyName = "storeId")] public string StoreId { get; set; } /// /// 订单单号 /// [JsonProperty(PropertyName = "tradeNo")] public string TradeNo { get; set; } } }