| | |
| | | [Column("ITEM_ID")] |
| | | [SugarColumn(ColumnName = "ITEM_ID")] |
| | | public decimal? ItemId { get; set; } |
| | | /// <summary> |
| | | /// 穴数 |
| | | /// </summary> |
| | | [Column("MNUM")] |
| | | [SugarColumn(ColumnName = "MNUM")] |
| | | public decimal? Mnum { get; set; } |
| | | /// <summary> |
| | | /// 堵穴号 |
| | | /// </summary> |
| | | [Column("DNUM")] |
| | | [SugarColumn(ColumnName = "DNUM")] |
| | | public string? Dnum { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 标准值 |
| | |
| | | [StringLength(200, ErrorMessage = "备注不能超出200")] |
| | | public string? Remarks { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 送检批数 |
| | | /// </summary> |
| | | [Column("SNUM")] |
| | | [SugarColumn(ColumnName = "SNUM")] |
| | | public decimal? Snum { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 穴号信息(用于前端显示) |
| | | /// </summary> |
| | | [SugarColumn(IsIgnore = true)] |
| | | public List<HoleNumberInfo>? HoleNumbers { get; set; } |
| | | |
| | | [SugarColumn(IsIgnore = true)] public string? result { get; set; } |
| | | [SugarColumn(IsIgnore = true)] public string? imageData { get; set; } |
| | | } |