kyy
2025-08-05 6581234907def80093c3e9b4cdbc864714ed3f59
MES.Service/Modes/QsItemOqcReq.cs
@@ -112,16 +112,18 @@
    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; }
@@ -129,9 +131,18 @@
    [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; }
}