using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace zzz.Model.Entity { /// /// QC结果 /// [SugarTable("eqmt_collect_qc_result")] public class EqmtCollectQCResult { /// /// id /// [SugarColumn(IsNullable = false, IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "自增主键")] public long id { get; set; } /// /// 创建时间 /// [SugarColumn(IsNullable = true, ColumnDescription = "创建时间")] public DateTime? gmt_create { get; set; } = DateTime.Now; /// /// 修改时间 /// [SugarColumn(IsNullable = true, ColumnDescription = "修改时间")] public DateTime? gmt_modified { get; set; } /// /// 班次开始时间 /// [SugarColumn(IsNullable = true, ColumnDescription = "班次开始时间")] public DateTime? shift_begin_dt { get; set; } /// /// 收集唯一ID /// [SugarColumn(IsNullable = true, ColumnDescription = "收集唯一ID")] public string collect_id { get; set; } /// /// 设备id /// [SugarColumn(IsNullable = true, ColumnDescription = "设备id")] public int eqmt_id { get; set; } /// /// 寄存器地址(发生异常) (QC项) /// [SugarColumn(IsNullable = true, ColumnDescription = "寄存器地址(发生异常)")] public string registor_address { get; set; } /// /// 报警类型 1:ON报警停机 2:ON报警不停机 /// [SugarColumn(IsNullable = true, ColumnDescription = "报警类型 1:ON报警停机 2:ON报警不停机")] public int? except_type { get; set; } /// /// 报警类型 1:ON报警停机 2:ON报警不停机 /// [SugarColumn(IsNullable = true, ColumnDescription = "报警类型名称 1:ON报警停机 2:ON报警不停机")] public string except_type_name { get; set; } /// /// 报警内容 /// [SugarColumn(IsNullable = true, ColumnDescription = "报警内容")] public string except_message { get; set; } /// /// QC结果数量 /// [SugarColumn(IsNullable = true, ColumnDescription = "QC结果数量")] public int qc_result { get; set; } } }