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.

51 lines
1.2 KiB
C#

9 months ago
using Newtonsoft.Json;
using NPoco;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace POSV.Entity
{
[Serializable]
[JsonObject(MemberSerialization.OptIn)]
[TableName("pos_guestshow_device")]
[PrimaryKey(new string[] { "id" }, AutoIncrement = false)]
public class GuestShowDevice :BaseEntity
{
public GuestShowDevice()
{
}
/// <summary>
/// 租户名称
/// </summary>
[JsonProperty(PropertyName = "tenantId")]
[Column("tenantId")]
public string TenantId { get; set; }
/// <summary>
/// 客显型号名称
/// </summary>
[JsonProperty(PropertyName = "name")]
[Column("name")]
public string Name { get; set; }
/// <summary>
/// 参数
/// </summary>
[JsonProperty(PropertyName = "param")]
[Column("param")]
public string Param { get; set; }
/// <summary>
/// 是否本地数据
/// </summary>
[JsonProperty(PropertyName = "isLocal")]
[Column("isLocal")]
public int IsLocal { get; set; }
}
}