| | |
| | | [Column("ITEM_ID")] |
| | | [SugarColumn(ColumnName = "ITEM_ID")] //用于SqlSugar |
| | | public decimal? ItemId { get; set; } |
| | | |
| | | //Remarks |
| | | [Column("Remarks")] |
| | | [SugarColumn(ColumnName = "Remarks")] //用于SqlSugar |
| | | [StringLength(200, ErrorMessage = "备注不能超出200")] |
| | | public string? Remarks { get; set; } |
| | | |
| | | |
| | | |
| | | |
| | | [SugarColumn(IsIgnore = true)] public string? ItemName { get; set; } |
| | | |
| | | [SugarColumn(IsIgnore = true)] public string? ItemModel { get; set; } |
| | | |
| | | [SugarColumn(IsIgnore = true)] public string? LineNo { get; set; } |
| | | |
| | | |
| | | |
| | | [SugarColumn(IsIgnore = true)] public decimal? Quantity { get; set; } |
| | | |
| | | [SugarColumn(IsIgnore = true)] public string? TaskNo { get; set; } |
| | | |
| | | |
| | | |
| | | } |
| | | /// <summary> |
| | | /// 审核标识 |
| | | /// </summary> |
| | | [Column("FSUBMIT")] |
| | | [SugarColumn(ColumnName = "FSUBMIT")] //用于SqlSugar |
| | | public decimal? Fsubmit { get; set; } |
| | | |
| | | // 车间 |
| | | [SugarColumn(ColumnName = "CJ")] public string? itemCj { get; set; } |
| | | } |