You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

69 lines
1.6 KiB
C#

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