using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HighWayIot.Repository.domain { /// /// /// [SugarTable("zx_recipe_position_para")] public class ZxRecipePositionParaEntity { /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "id", IsPrimaryKey = true, IsIdentity = true)] public int Id { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "E1")] public int? E1 { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "E2")] public int? E2 { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "E3")] public int? E3 { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "E4")] public int? E4 { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "E5")] public int? E5 { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "E6")] public int? E6 { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "E7")] public int? E7 { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "E8")] public int? E8 { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "E9")] public int? E9 { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "E10")] public int? E10 { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "E11")] public int? E11 { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "E12")] public int? E12 { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "E13")] public int? E13 { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "E14")] public int? E14 { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "E15")] public int? E15 { get; set; } } }