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.

106 lines
2.7 KiB
C#

9 months ago
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Newtonsoft.Json;
using NPoco;
namespace POSV.Entity
{
[Serializable]
[JsonObject(MemberSerialization.OptIn)]
[TableName("pos_kds_product")]
[PrimaryKey(new string[] { "id" }, AutoIncrement = false)]
public class KdsProduct : BaseEntity
{
public KdsProduct()
{
}
/// <summary>
/// 租户ID
/// </summary>
[JsonProperty(PropertyName = "tenantId")]
[Column("tenantId")]
public string TenantId { get; set; }
/// <summary>
/// 门店Id
/// </summary>
[JsonProperty(PropertyName = "storeId")]
[Column("storeId")]
public string StoreId { get; set; }
/// <summary>
/// 商品Id
/// </summary>
[JsonProperty(PropertyName = "productId")]
[Column("productId")]
public string ProductId { get; set; }
/// <summary>
/// 是否厨显(0否1是)
/// </summary>
[JsonProperty(PropertyName = "chuxianFlag")]
[Column("chuxianFlag")]
public string ChuxianFlag { get; set; }
/// <summary>
/// 厨显方案
/// </summary>
[JsonProperty(PropertyName = "chuxian")]
[Column("chuxian")]
public string Chuxian { get; set; }
/// <summary>
/// 厨显超时(分钟)
/// </summary>
[JsonProperty(PropertyName = "chuxianTime")]
[Column("chuxianTime")]
public int ChuxianTime { get; set; }
/// <summary>
/// 是否出品(0否1是)
/// </summary>
[JsonProperty(PropertyName = "chupinFlag")]
[Column("chupinFlag")]
public string ChupinFlag { get; set; }
/// <summary>
/// 出品方案
/// </summary>
[JsonProperty(PropertyName = "chupin")]
[Column("chupin")]
public string Chupin { get; set; }
/// <summary>
/// 出品超时(分钟)
/// </summary>
[JsonProperty(PropertyName = "chupinTime")]
[Column("chupinTime")]
public int ChupinTime { get; set; }
/// <summary>
/// 扩展字段1
/// </summary>
[JsonProperty(PropertyName = "ext1")]
[Column("ext1")]
public string Ext1 { get; set; }
/// <summary>
/// 扩展字段2
/// </summary>
[JsonProperty(PropertyName = "ext2")]
[Column("ext2")]
public string Ext2 { get; set; }
/// <summary>
/// 扩展字段3
/// </summary>
[JsonProperty(PropertyName = "ext3")]
[Column("ext3")]
public string Ext3 { get; set; }
}
}