namespace ZR.Model.MES.andon { /// /// 安灯报警处理过程 /// [SugarTable("andon_alarm_record_process")] public class AndonAlarmRecordProcess { /// /// 主键 /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public int Id { get; set; } /// /// 报警记录编码 /// [SugarColumn(ColumnName = "alarm_code")] public string AlarmCode { get; set; } /// /// 操作 /// public string Operate { get; set; } /// /// 备注 /// public string Remarks { get; set; } /// /// 创建人 /// [SugarColumn(ColumnName = "created_by")] public string CreatedBy { get; set; } /// /// 创建人名称 /// [SugarColumn(ColumnName = "created_name")] public string CreatedName { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnName = "created_time")] public DateTime? CreatedTime { get; set; } /// /// 更新人 /// [SugarColumn(ColumnName = "updated_by")] public string UpdatedBy { get; set; } /// /// 更新人名称 /// [SugarColumn(ColumnName = "updated_name")] public string UpdatedName { get; set; } /// /// 更新时间 /// [SugarColumn(ColumnName = "updated_time")] public DateTime? UpdatedTime { get; set; } } }