using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ZR.Model.mes.pro { /// /// 产品定义 /// [SugarTable("md_product_define")] public class MdProductDefine { /// /// 流水号 /// [SugarColumn(ColumnName = "id", IsPrimaryKey = true, IsIdentity = true)] public int Id { get; set; } /// /// 产品编号 /// [SugarColumn(ColumnName = "product_code")] public string ProductCode { get; set; } /// /// 产品名称 /// [SugarColumn(ColumnName = "product_name")] public string ProductName { get; set; } /// /// 单位id /// [SugarColumn(ColumnName = "product_unit")] public int? ProductUnit { get; set; } /// /// 工艺路线code /// [SugarColumn(ColumnName = "processRoute_code")] public string ProcessrouteCode { get; set; } /// /// 工艺路线 /// [SugarColumn(ColumnName = "processRoute_name")] public string ProcessrouteName { get; set; } /// /// 预留字段1 /// [SugarColumn(ColumnName = "attre1")] public string Attre1 { get; set; } /// /// 预留字段2 /// [SugarColumn(ColumnName = "attre2")] public string Attre2 { get; set; } /// /// 预留字段3 /// [SugarColumn(ColumnName = "attre3")] public string Attre3 { get; set; } /// /// 租户号 /// [SugarColumn(ColumnName = "TENANT_ID")] public string TenantId { get; set; } /// /// 乐观锁 /// [SugarColumn(ColumnName = "REVISION")] public int? Revision { get; set; } /// /// 创建人 /// [SugarColumn(ColumnName = "CREATED_BY")] public string CreatedBy { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnName = "CREATED_TIME")] public DateTime? CreatedTime { get; set; } /// /// 更新人 /// [SugarColumn(ColumnName = "UPDATED_BY")] public string UpdatedBy { get; set; } /// /// 更新时间 /// [SugarColumn(ColumnName = "UPDATED_TIME")] public DateTime? UpdatedTime { get; set; } } }