using System; using System.Collections.Generic; using System.Linq; using System.Text; using Newtonsoft.Json; namespace POSV.QiMai { /// /// 门店接单 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class QiMaiShopStatusRequest { /// /// 门店ID /// [JsonProperty(PropertyName = "storeId")] public string StoreId { get; set; } /// /// 状态变更(1开启,2关闭) /// [JsonProperty(PropertyName = "status")] public string Status { get; set; } } }