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 RecipeNo1 { get; set; } = string.Empty; /// /// 备 注:标称尺度1 /// 默认值: /// [SugarColumn(ColumnName = "spec_name_1")] public string SpecName1 { 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 RecipeNo2 { get; set; } = string.Empty; /// /// 备 注:标称尺度2 /// 默认值: /// [SugarColumn(ColumnName = "spec_name_2")] public string SpecName2 { get; set; } = string.Empty; } }