using System; using System.Collections.Generic; using System.Linq; using System.Text; using Newtonsoft.Json; namespace POSV.Card { /// /// 查询店铺信息 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class EleMeShopInfoResponse { /// /// 店铺ID /// [JsonProperty(PropertyName = "id")] public string Id { get; set; } /// /// 门店名称 /// [JsonProperty(PropertyName = "name")] public string Name { get; set; } /// /// 营业时间bitmap /// [JsonProperty(PropertyName = "openTimeBitmap")] public string OpenTimeBitmap { get; set; } /// /// 是否正在营业(1-是;0-否;) /// [JsonProperty(PropertyName = "isOpen")] public int IsOpen { get; set; } /// /// 营业时间bitmap /// [JsonProperty(PropertyName = "servingTime")] public Object ServingTime { get; set; } } }