using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HighWayIot.Repository.domain { /// /// 小车参数 /// [SugarTable("zx_car_para")] internal class ZxCarParaEntity { /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "id", IsPrimaryKey = true, IsIdentity = true)] public int Id { get; set; } /// /// 备 注: /// 默认值: 设备编号 /// [SugarColumn(ColumnName = "device_no")] public int Device_no { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "p01")] public bool? P01 { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "p02")] public bool? P02 { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "p03")] public bool? P03 { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "p04")] public bool? P04 { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "p05")] public bool? P05 { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "p06")] public bool? P06 { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "p07")] public bool? P07 { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "p08")] public bool? P08 { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "p09")] public bool? P09 { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "p10")] public bool? P10 { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "p11")] public bool? P11 { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "p12")] public bool? P12 { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "p13")] public bool? P13 { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "p14")] public bool? P14 { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "p15")] public bool? P15 { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "p16")] public bool? P16 { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "p17")] public bool? P17 { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "p18")] public bool? P18 { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "p19")] public bool? P19 { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "p20")] public bool? P20 { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "p21")] public bool? P21 { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "p22")] public bool? P22 { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "p23")] public bool? P23 { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "p24")] public bool? P24 { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "p25")] public bool? P25 { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "p26")] public bool? P26 { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "p27")] public bool? P27 { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "p28")] public bool? P28 { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "p29")] public bool? P29 { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "p30")] public bool? P30 { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "p31")] public bool? P31 { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "p32")] public bool? P32 { get; set; } } }