namespace DOAN.Model.MES.mm.line { /// /// mm_line_location /// [SugarTable("mm_line_location")] public class MmLineLocation { /// /// 库位的唯一标识符 /// [SugarColumn(IsPrimaryKey = true, IsIdentity = false)] public string Id { get; set; } /// /// 库位名称 /// [SugarColumn(ColumnName = "location_name")] public string LocationName { get; set; } /// /// 库位编号 /// [SugarColumn(ColumnName = "location_code")] public string LocationCode { get; set; } /// /// 线别 /// [SugarColumn(ColumnName = "line_code")] public string LineCode { get; set; } /// /// 库位的描述信息 /// public string Description { get; set; } /// /// 库位的容量 /// public int? Capacity { get; set; } /// /// 库位的状态(如可用、禁用等) /// public int? Status { get; set; } } }