using System; using System.Collections.Generic; using System.Linq; using System.Text; using Newtonsoft.Json; namespace POSV.Card { /// /// 门店信息 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class BaiDuShopInfoResponse { /// /// 门店ID /// [JsonProperty(PropertyName = "shop_id")] public string Shop_id { get; set; } /// /// 营业状态(1:正常营业, 3:休息中 9:停止营业) /// [JsonProperty(PropertyName = "status")] public int Status { get; set; } /// /// 门店名称 /// [JsonProperty(PropertyName = "name")] public string Name { get; set; } /// /// 门店LOGO /// [JsonProperty(PropertyName = "shop_logo")] public string Shop_logo { get; set; } /// /// 开始时间 /// [JsonProperty(PropertyName = "start")] public string Start { get; set; } /// /// 结束时间 /// [JsonProperty(PropertyName = "end")] public string End { get; set; } } }