using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ZR.Model.MES.ql { /// /// 调试数据 /// [SugarTable("ql_test")] public class PLTest { /// /// 流水号 /// [SugarColumn(ColumnName = "id", IsPrimaryKey = true)] public int Id { get; set; } /// /// 组识别号 /// [SugarColumn(ColumnName = "id_group")] public string IdGroup { get; set; } /// /// 日期 /// [SugarColumn(ColumnName = "dt")] public string Dt { get; set; } /// /// 颜色/代号 /// [SugarColumn(ColumnName = "code")] public string Code { get; set; } /// /// 温度 /// [SugarColumn(ColumnName = "value01")] public string Value01 { get; set; } /// /// △L /// [SugarColumn(ColumnName = "value02")] public string Value02 { get; set; } /// /// △A /// [SugarColumn(ColumnName = "value03")] public string Value03 { get; set; } /// /// △B /// [SugarColumn(ColumnName = "value04")] public string Value04 { get; set; } /// /// △E /// [SugarColumn(ColumnName = "value05")] public string Value05 { get; set; } /// /// mDE /// [SugarColumn(ColumnName = "value06")] public string Value06 { get; set; } /// /// 备注 /// [SugarColumn(ColumnName = "value07")] public string Value07 { get; set; } /// /// 调整配方 /// [SugarColumn(ColumnName = "value08")] public string Value08 { get; set; } /// /// R值 /// [SugarColumn(ColumnName = "value09")] public string Value09 { get; set; } /// /// 流量 /// [SugarColumn(ColumnName = "value10")] public string Value10 { get; set; } /// /// 雾化 /// [SugarColumn(ColumnName = "value11")] public string Value11 { get; set; } /// /// 扇面 /// [SugarColumn(ColumnName = "value12")] public string Value12 { get; set; } /// /// 高压 /// [SugarColumn(ColumnName = "value13")] public string Value13 { get; set; } /// /// 名称 /// [SugarColumn(ColumnName = "value14")] public string Value14 { get; set; } /// /// 值 /// [SugarColumn(ColumnName = "value15")] public string Value15 { get; set; } /// /// 质量判定 /// [SugarColumn(ColumnName = "value16")] public string Value16 { get; set; } /// /// 创建人 /// [SugarColumn(ColumnName = "CREATED_BY")] public string CreatedBy { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnName = "CREATED_TIME")] public DateTime? CreatedTime { get; set; } /// /// 更新人 /// [SugarColumn(ColumnName = "UPDATED_BY")] public string UpdatedBy { get; set; } /// /// 更新时间 /// [SugarColumn(ColumnName = "UPDATED_TIME")] public DateTime? UpdatedTime { get; set; } } }