啊鑫
2 天以前 a3a5db87cd11f10efd42eee49e7977c5360e1b55
MES.Service/Modes/QsItemIpiItem.cs
@@ -156,11 +156,25 @@
    [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; }
}