| | |
| | | { |
| | | public class StockViewDTO |
| | | { |
| | | public int AreaId { get; set; } |
| | | |
| | | [SugarColumn(IsNullable = true, ColumnDescription = "è´§ä½å·")] |
| | | public string LocationCode { get; set; } |
| | | |
| | | public string LocationName { get; set; } |
| | |
| | | |
| | | [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主é®")] |
| | | public int StockId { get; set; } |
| | | |
| | | [SugarColumn(IsNullable = true, ColumnDescription = "æçå·")] |
| | | public string PalletCode { get; set; } |
| | | |
| | | public bool IsFull { get; set; } |
| | | [SugarColumn(IsNullable = true, ColumnDescription = "ç©æå·")] |
| | | public string MaterielCode { get; set; } |
| | | |
| | | [SugarColumn(IsNullable = true, ColumnDescription = "æ¹æ¬¡å·")] |
| | | public string BatchNo { get; set; } |
| | | |
| | | public int StockStatus { get; set; } |
| | | |