using System; using System.Collections.Generic; using System.Linq; using System.Text; using Newtonsoft.Json; namespace POSV.QiMai { /// /// 门店信息查询 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class QiMaiShopQueryResponse { /// /// 门店名称 /// [JsonProperty(PropertyName = "name")] public string Name { get; set; } /// /// 门店状态 1营业2休息 /// [JsonProperty(PropertyName = "status")] public int Status { get; set; } /// /// 营业状态 /// [JsonProperty(PropertyName = "saletimes")] public List Saletimes { get; set; } } }