xwt
2025-08-16 823e5cae379ee1a259f79060ca0015d381c61f79
StandardInterface/MES.Service/Modes/QsItemOqcReq.cs
@@ -119,6 +119,30 @@
    [SugarColumn(ColumnName = "ITEM_ID")]
    public decimal? ItemId { get; set; }
    /// <summary>
    ///     送检批次
    /// </summary>
    [SugarColumn(ColumnName = "RBILL_NO")]
    public string? RbillNo { get; set; }
    /// <summary>
    ///     车间
    /// </summary>
    [SugarColumn(ColumnName = "WORK_SHOP")]
    public string? WorkShop { get; set; }
    /// <summary>
    ///     部门ID
    /// </summary>
    [SugarColumn(ColumnName = "DEPARTMENT_ID")]
    public string? DepartmentId { get; set; }
    /// <summary>
    ///     生产线编号
    /// </summary>
    [SugarColumn(ColumnName = "LINE_NO")]
    public string? LineNo { get; set; }
    // 添加以下字段以适应查询返回的数据
    [SugarColumn(IsIgnore = true)] public string? ItemName { get; set; }
@@ -132,7 +156,33 @@
    [SugarColumn(IsIgnore = true)] public string? Daa015 { get; set; }
    [SugarColumn(IsIgnore = true)] public string? LineNo { get; set; }
    /// <summary>
    ///     送检数量
    /// </summary>
    [SugarColumn(ColumnName = "QUANTITY")]
    public decimal? Quantity { get; set; }
    [SugarColumn(IsIgnore = true)] public decimal? Quantity { get; set; }
    /// <summary>
    ///     不良原因
    /// </summary>
    [SugarColumn(ColumnName = "BLYY")]
    public string? Blyy { get; set; }
    /// <summary>
    ///     评审状态
    /// </summary>
    [SugarColumn(ColumnName = "PSZT")]
    public string? Pszt { get; set; }
    /// <summary>
    ///     所属车间
    /// </summary>
    [SugarColumn(ColumnName = "SSCJ")]
    public string? Sscj { get; set; }
    /// <summary>
    ///     不良描述
    /// </summary>
    [SugarColumn(ColumnName = "FNG_DESC")]
    public string? FngDesc { get; set; }
}