namespace DOAN.Model.PBL { /// /// 料架表 /// [SugarTable("storagelocation")] public class Storagelocation { /// /// Id /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public int Id { get; set; } /// /// 料架号 /// [SugarColumn(ColumnName = "rack_code")] public string RackCode { get; set; } /// /// 层号 /// [SugarColumn(ColumnName = "layer_num")] public int LayerNum { get; set; } /// /// 零件号 /// public string Partnumber { get; set; } /// /// 最大容量 /// [SugarColumn(ColumnName = "max_capacity")] public int MaxCapacity { get; set; } /// /// 箱子数 /// [SugarColumn(ColumnName = "package_num")] public int? PackageNum { get; set; } /// /// 是否亮灯 /// [SugarColumn(ColumnName = "is_light")] public int? IsLight { get; set; } /// ///PLC地址(亮灯拣货) /// [SugarColumn(ColumnName = "plc_light_address")] public string PlcAddress { get; set; } ///// ///// PLC地址(空箱补料) ///// //[SugarColumn(ColumnName = "plc_address_2")] //public string PlcAddress2 { 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; } [SugarColumn(ColumnName = "remark")] public string Remark { get; set; } } }