| | |
| | | public string? MoidNum { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 模具号 |
| | | /// 物料id |
| | | /// </summary> |
| | | [Column("ITEM_ID")] |
| | | [SugarColumn(ColumnName = "ITEM_ID")] //用于SqlSugar |
| | | public string? ItemId { get; set; } |
| | | 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 decimal? Quantity { get; set; } |
| | | |
| | | [SugarColumn(IsIgnore = true)] public string? TaskNo { get; set; } |
| | | |
| | | |
| | | |
| | | } |