namespace DOAN.Model.PBL { /// /// /// [SugarTable("light_log")] public class LightLog { /// /// 雪花 /// [SugarColumn(IsPrimaryKey = true, IsIdentity = false)] public string Id { get; set; } /// /// 1亮灯、2灭灯 /// [SugarColumn(ColumnName = "light_operation")] public int? LightOperation { get; set; } /// /// 货架号 /// [SugarColumn(ColumnName = "shelf_code")] public string ShelfCode { get; set; } /// /// 层号 /// [SugarColumn(ColumnName = "layer_num")] public string LayerNum { get; set; } /// /// PBL系统、人工 /// public string Operationer { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnName = "created_time")] public DateTime? CreatedTime { get; set; } } }