| | |
| | | [StringLength(32, ErrorMessage = "Picturename长度不能超出32")] |
| | | public string? Picturename { get; set; } |
| | | |
| | | [Column("Remarks")] |
| | | [SugarColumn(ColumnName = "Remarks")] //用于SqlSugar |
| | | [Column("REMARKS")] |
| | | [SugarColumn(ColumnName = "REMARKS")] //用于SqlSugar |
| | | [StringLength(200, ErrorMessage = "备注不能超出200")] |
| | | public string? Remarks { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 线长查看(默认0) |
| | | /// </summary> |
| | | [Column("IS_XZ")] |
| | | [SugarColumn(ColumnName = "IS_XZ")] //用于SqlSugar |
| | | public decimal? IsXz { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 检验查看(默认0) |
| | | /// </summary> |
| | | [Column("IS_JY")] |
| | | [SugarColumn(ColumnName = "IS_JY")] //用于SqlSugar |
| | | public decimal? IsJy { get; set; } |
| | | |
| | | [SugarColumn(IsIgnore = true)] public string? result { get; set; } |
| | | [SugarColumn(IsIgnore = true)] public string? imageData { get; set; } |
| | | } |