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