using System; using System.Collections.Generic; using System.Linq; using SqlSugar; namespace Models { /// /// /// [SugarTable("zx_recipe")] public class ZxRecipeEntity { /// /// 备 注:配方编号 /// 默认值: /// [SugarColumn(ColumnName = "recipe_code", IsPrimaryKey = true)] public string RecipeCode { get; set; } /// /// 备 注:配方名称 /// 默认值: /// [SugarColumn(ColumnName = "recipe_name")] public string RecipeName { get; set; } = null; /// /// 备 注:SPEC编号 /// 默认值: /// [SugarColumn(ColumnName = "recipe_spec_code")] public string RecipeSpecCode { get; set; } = null; /// /// 备 注:SPEC规格 /// 默认值: /// [SugarColumn(ColumnName = "recipe_spec_name")] public string RecipeSpecName { get; set; } = null; /// /// 备 注:寸别 /// 默认值: /// [SugarColumn(ColumnName = "size_kind")] public int? SizeKind { get; set; } /// /// 备 注:固定胶宽度 /// 默认值: /// [SugarColumn(ColumnName = "fixed_width")] public decimal? FixedWidth { get; set; } /// /// 备 注:重量公差(%) /// 默认值: /// [SugarColumn(ColumnName = "weight_error")] public int? WeightError { get; set; } /// /// 备 注:是否使用 /// 默认值: /// [SugarColumn(ColumnName = "is_use")] public bool? IsUse { get; set; } /// /// 备 注:是否已删除 /// 默认值: /// [SugarColumn(ColumnName = "is_deleted")] public bool? IsDeleted { get; set; } } }