using System; using System.Collections.Generic; using System.Linq; using SqlSugar; namespace Models { /// /// /// [SugarTable("zx_weight")] public class ZxWeightEntity { /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "id", IsPrimaryKey = true, IsIdentity = true)] public int Id { get; set; } /// /// 备 注:配方编号 /// 默认值: /// [SugarColumn(ColumnName = "recipe_code")] public string RecipeCode { get; set; } = null; /// /// 备 注:物料编号 /// 默认值: /// [SugarColumn(ColumnName = "material_code")] public string MaterialCode { get; set; } = null; /// /// 备 注:厚度 /// 默认值: /// [SugarColumn(ColumnName = "set_thickness")] public decimal? SetThickness { get; set; } /// /// 备 注:宽度 /// 默认值: /// [SugarColumn(ColumnName = "set_width")] public decimal? SetWidth { get; set; } /// /// 备 注:层数 /// 默认值: /// [SugarColumn(ColumnName = "set_layer")] public int? SetLayer { get; set; } /// /// 备 注:重量 /// 默认值: /// [SugarColumn(ColumnName = "set_weight")] public decimal? SetWeight { get; set; } /// /// 备 注:公差 /// 默认值: /// [SugarColumn(ColumnName = "set_error")] public decimal? SetError { get; set; } /// /// 备 注:是否使用 /// 默认值: /// [SugarColumn(ColumnName = "is_use")] public bool? IsUse { get; set; } /// /// 备 注:是否删除 /// 默认值: /// [SugarColumn(ColumnName = "is_deleted")] public bool? IsDeleted { get; set; } } }