xwt
2025-08-18 52f26a9f94f639d994a8300d100161acf5e1d0c3
StandardInterface/MES.Service/Modes/QsItemOqcReq.cs
@@ -125,6 +125,24 @@
    [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; }
@@ -138,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; }
}