namespace ZR.Model.MES.andon { /// /// 安灯区域工作时间表 /// [SugarTable("andon_work_time")] public class AndonWorkTime { /// /// 主键 /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public int Id { get; set; } /// /// 父区域 /// public string Area1 { get; set; } /// /// 子区域 /// public string Area2 { get; set; } /// /// 起始时间 /// public DateTime? Starttime { get; set; } /// /// 停止时间 /// public DateTime? Endtime { get; set; } /// /// 工作时长(分钟) /// public int? Workminute { 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; } } }