sjz
2025-05-09 597f8e08e6264b2143454e40a7be553d1e8b6df7
StandardInterface/MES.Service/Dto/webApi/QcIssueResult/ErpQcIssueResult.cs
¶Ô±ÈÐÂÎļþ
@@ -0,0 +1,44 @@
using Newtonsoft.Json;
using System.Collections.Generic;
public class ErpQcIssueResult
{
    public string? ProcessNo { get; set; }
    public string? FReview { get; set; }
    public string? QcStatus { get; set; }  // åŽŸQCSTATU改为规范命名
    // æ–°å¢žåˆå¹¶å­—段
    public string? Remark { get; set; }
    public int? ApplicationQuantity { get; set; }  // ä¿æŒå¯ç©ºæ€§
    public string? Reason { get; set; }
    public string? BadCauses { get; set; }
    public string? AffiliatedWorkshop { get; set; }
    public string? ItemName { get; set; }
    public string? SupplierName { get; set; }
    public string? ItemNo { get; set; }
    public List<string> Applicants { get; set; } = new List<string>();
    public List<string> ApplicationDepartments { get; set; } = new List<string>();
}