| | |
| | | { |
| | | [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")] |
| | | public int Id { get; set; } |
| | | /// <summary> |
| | | /// 仓库主键 |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = false, ColumnDescription = "仓库主键")] |
| | | public int WarehouseId { get; set; } |
| | | |
| | | [SugarColumn(IsNullable = true, ColumnDescription = "区域主键")] |
| | | public int AreaId { get; set; } |
| | | |
| | | [SugarColumn(IsNullable = true, Length = 20, ColumnDescription = "货位编号")] |
| | | [SugarColumn(IsNullable = true, Length = 30, ColumnDescription = "货位编号")] |
| | | public string LocationCode { get; set; } |
| | | |
| | | [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "货位名称")] |