using System; using System.Collections.Generic; using System.Linq; using SqlSugar; namespace Models { /// /// 生产排程实体类 /// [SugarTable("zx_scheduling")] public class ZxSchedulingEntity { /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "id", IsPrimaryKey = true, IsIdentity = true)] public int Id { get; set; } /// /// 备 注:机台号 /// 默认值: /// [SugarColumn(ColumnName = "device_no")] public int? DeviceNo { get; set; } /// /// 备 注:成品代号1 /// 默认值: /// [SugarColumn(ColumnName = "recipe_name_1")] public string RecipeName1 { get; set; } = string.Empty; /// /// 备 注:配方编号1 /// 默认值: /// [SugarColumn(ColumnName = "recipe_no_1")] public string RecipeCode1 { get; set; } = string.Empty; ///// ///// 备 注:批次号1 ///// 默认值: ///// //[SugarColumn(ColumnName = "batch_code_1")] //public string BatchCode1 { get; set; } = string.Empty; /// /// 备 注:成品代号2 /// 默认值: /// [SugarColumn(ColumnName = "recipe_name_2")] public string RecipeName2 { get; set; } = string.Empty; /// /// 备 注:配方编号2 /// 默认值: /// [SugarColumn(ColumnName = "recipe_no_2")] public string RecipeCode2 { get; set; } = string.Empty; ///// ///// 备 注:批次号2 ///// 默认值: ///// //[SugarColumn(ColumnName = "batch_code_2")] //public string BatchCode2 { get; set; } = string.Empty; } }