| | |
| | | [SugarColumn(ColumnName = "RBILL_NO")] |
| | | public string? RbillNo { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 车间 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "WORK_SHOP")] |
| | | public string? WorkShop { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 部门ID |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "DEPARTMENT_ID")] |
| | | public string? DepartmentId { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 生产线编号 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "LINE_NO")] |
| | | public string? LineNo { get; set; } |
| | | |
| | | // 添加以下字段以适应查询返回的数据 |
| | | [SugarColumn(IsIgnore = true)] public string? ItemName { get; set; } |
| | | |
| | |
| | | |
| | | [SugarColumn(IsIgnore = true)] public string? Daa015 { get; set; } |
| | | |
| | | [SugarColumn(IsIgnore = true)] public string? LineNo { get; set; } |
| | | |
| | | [SugarColumn(IsIgnore = true)] public decimal? Quantity { get; set; } |
| | | /// <summary> |
| | | /// 送检数量 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "QUANTITY")] |
| | | public decimal? Quantity { get; set; } |
| | | } |