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.

71 lines
1.8 KiB
C#

9 months ago
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace POSV.Entity
{
/// <summary>
/// pos信息
/// </summary>
[Serializable]
[JsonObject(MemberSerialization.OptIn)]
public class PosInfo
{
/// <summary>
/// 唯一ID
/// </summary>
[JsonProperty(PropertyName = "id")]
public string Id { get; set; }
/// <summary>
/// 企业编号
/// </summary>
[JsonProperty(PropertyName = "tenantId")]
public string TenantId { get; set; }
/// <summary>
/// 注册门店ID
/// </summary>
[JsonProperty(PropertyName = "storeId")]
public string StoreId { get; set; }
/// <summary>
/// 注册门店编号
/// </summary>
[JsonProperty(PropertyName = "storeNo")]
public string StoreNo { get; set; }
/// <summary>
/// POS编号
/// </summary>
[JsonProperty(PropertyName = "posNo")]
public string PosNo { get; set; }
/// <summary>
/// 计算机名称
/// </summary>
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
/// <summary>
/// 终端类型(餐饮版本android,x86,kds_x86;茶饮版本tea_android,tea_x86,tea_kds_x86)
/// </summary>
[JsonProperty(PropertyName = "terminalType")]
public string TerminalType { get; set; }
/// <summary>
/// MAC地址
/// </summary>
[JsonProperty(PropertyName = "macAddress")]
public string MacAddress { get; set; }
/// <summary>
/// 备注说明
/// </summary>
[JsonProperty(PropertyName = "description")]
public string Description { get; set; }
}
}