using System; using System.Collections.Generic; using System.Linq; using SqlSugar; namespace Models { /// /// /// [SugarTable("zx_recipe_para")] public class ZxRecipeParaEntity { /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "id", IsPrimaryKey = true, IsIdentity = true)] public int Id { get; set; } /// /// 备 注:关联配方号 /// 默认值: /// [SugarColumn(ColumnName = "recipe_code")] public string RecipeCode { get; set; } = string.Empty; /// /// 备 注:钢圈尺寸 /// 默认值: /// [SugarColumn(ColumnName = "rim_inch")] public int? RimInch { get; set; } /// /// 备 注:灯标宽度 /// 默认值: /// [SugarColumn(ColumnName = "light_width")] public int? LightWidth { get; set; } /// /// 备 注:减速距离 /// 默认值: /// [SugarColumn(ColumnName = "slow_distance")] public int? SlowDistance { get; set; } /// /// 备 注:停止距离 /// 默认值: /// [SugarColumn(ColumnName = "stop_distance")] public int? StopDistance { get; set; } /// /// 备 注:胎体重量 /// 默认值: /// [SugarColumn(ColumnName = "tire_weight")] public int? TireWeight { get; set; } /// /// 备 注:规格名 /// 默认值: /// [SugarColumn(ColumnName = "spec_name")] public string SpecName { get; set; } = string.Empty; /// /// 备 注:规格号 /// 默认值: /// [SugarColumn(ColumnName = "spec_code")] public int? SpecCode { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "S0")] public bool? S0 { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "S1")] public bool? S1 { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "S2")] public bool? S2 { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "S3")] public bool? S3 { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "S4")] public bool? S4 { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "S5")] public bool? S5 { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "S6")] public bool? S6 { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "S7")] public bool? S7 { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "S8")] public bool? S8 { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "S9")] public bool? S9 { get; set; } } }