using System; using System.Collections.Generic; using System.Linq; using System.Text; using Newtonsoft.Json; namespace POSV.Card { /// /// 门店营业状态修改 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class WeiXinShopOpenRequest { /// /// 门店ID /// [JsonProperty(PropertyName = "storeId")] public string StoreId { get; set; } /// /// 门店营业状态(0-休息;1-营业;) /// [JsonProperty(PropertyName = "openStatus")] public int OpenStatus { get; set; } } }