| | |
| | | [SugarColumn(IsNullable = true, ColumnDescription = "ä»»å¡å·")] |
| | | public int? TaskNum { get; set; } |
| | | |
| | | public string SupplyCode { get; set; } |
| | | |
| | | [SugarColumn(ColumnName = "lineNo", ColumnDescription = "è¡å·")] |
| | | public string? lineNo { get; set; } |
| | | |
| | | public string WarehouseCode { get; set; } |
| | | /// <summary> |
| | | /// ç¶æ ç¶æï¼0-å·²åé
1-é¨åæ£é 2-å·²æ£é 3-已宿 |
| | | /// ç¶æ ç¶æï¼0-å·²åé
1-åºåºä¸ 2-é¨åæ£é 3å·²æ£é |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = false, ColumnDescription = "ç¶æ")] |
| | | public int Status { get; set; } |
| | |
| | | |
| | | public int? ParentLockId { get; set; } |
| | | |
| | | [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "æä½è
")] |
| | | public string Operator { get; set; } |
| | | |
| | | |
| | | public decimal BarcodeQty { get; set; } |
| | | |
| | | public string BarcodeUnit { get; set; } |
| | | |
| | | public string OutboundBatchNo { get; set; } |
| | | |
| | | [Navigate(NavigateType.OneToOne, nameof(StockInfo))]//ä¸å¯¹ä¸ SchoolIdæ¯StudentAç±»éé¢ç |
| | | public Dt_StockInfo StockInfo { get; set; } //ä¸è½èµå¼åªè½æ¯null |
| | | |
| | | public int IsUnallocated { get; set; } = 0; |
| | | public string FactoryArea { get; set; } |
| | | |
| | | [SqlSugar.SugarColumn(IsIgnore = true)] |
| | | public decimal RemainQuantity => AssignQuantity - PickedQty; |
| | | |
| | | public int ReturnToMESStatus { get; set; } |
| | | |
| | | } |
| | | } |