namespace DOAN.Model.PBL { /// /// 库存报警日志 /// [SugarTable("alarm_log")] public class AlarmLog { /// /// 主键 /// [SugarColumn(IsPrimaryKey = true, IsIdentity = false)] public string Id { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 编码 /// public string Code { get; set; } /// /// 料架id /// [SugarColumn(ColumnName = "storagelocation_id")] public int? StoragelocationId { get; set; } /// /// 系统类别 /// public int? Type { get; set; } /// /// 系统状态 /// public int? Status { get; set; } /// /// 系统备注 /// public string Remark { get; set; } /// /// 发生时间 /// [SugarColumn(ColumnName = "action_time")] public DateTime? ActionTime { get; set; } /// /// 完成报警时间 /// [SugarColumn(ColumnName = "end_time")] public DateTime? EndTime { get; set; } } }