| | |
| | | /// <summary> |
| | | /// 需求部门 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "DEMAND_DEPARTMENT")] |
| | | public string? DemandDepartment { get; set; } |
| | | [SugarColumn(ColumnName = "DEMAND_DEPT")] |
| | | public string? DemandDept { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 收料部门 |
| | | /// 需求部门 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "RECEIVING_DEPARTMENT")] |
| | | public string? ReceivingDepartment { get; set; } |
| | | [SugarColumn(ColumnName = "RECEIVING_DEPT")] |
| | | public string? ReceivingDept { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 预计到货时间 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "ARRIVE_DATE")] |
| | | public DateTime? ArriveDate { get; set; } |
| | | } |