using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace JwKdsV.Entity.Tenant { /// /// 租户验证 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class PosValidResponse { /// /// store /// [JsonProperty(PropertyName = "store")] public PosRegisterResponse PosValid { get; set; } } /// /// 注册实体类 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class PosRegisterResponse { /// /// 门店ID /// [JsonProperty(PropertyName = "storeId")] public string StoreId { get; set; } /// /// 门店编号 /// [JsonProperty(PropertyName = "storeNo")] public string StoreNo { get; set; } /// /// 门店名称 /// [JsonProperty(PropertyName = "storeName")] public string StoreName { get; set; } /// /// 开放平台秘钥 /// [JsonProperty(PropertyName = "appSecret")] public string AppSecret { get; set; } /// /// 开放平台key /// [JsonProperty(PropertyName = "appKey")] public string AppKey { get; set; } /// /// pos编号 /// [JsonProperty(PropertyName = "posNo")] public string PosNo { get; set; } } }