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.

59 lines
1.4 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_mapping_product_meituan")]
[PrimaryKey(new string[] { "Id" }, AutoIncrement = false)]
public class MappingDishMeiTuan : BaseEntity
{
public MappingDishMeiTuan()
{
}
/// <summary>
/// 租户ID
/// </summary>
[JsonProperty(PropertyName = "tenantId")]
[Column("tenantId")]
public string TenantId { get; set; }
/// <summary>
/// 菜品ID
/// </summary>
[JsonProperty(PropertyName = "dishId")]
[Column("dishId")]
public string DishId { get; set; }// 菜品ID
/// <summary>
/// 规格ID
/// </summary>
[JsonProperty(PropertyName = "dishSkuId")]
[Column("dishSkuId")]
public string DishSkuId { get; set; }
/// <summary>
/// 巨为商品ID
/// </summary>
[JsonProperty(PropertyName = "erpProductId")]
[Column("erpProductId")]
public string ErpProductId { get; set; }
/// <summary>
/// 巨为规格ID
/// </summary>
[JsonProperty(PropertyName = "erpSpecId")]
[Column("erpSpecId")]
public string ErpSpecId { get; set; }
}
}