sjz
2025-05-09 597f8e08e6264b2143454e40a7be553d1e8b6df7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
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>();
}