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 Applicants { get; set; } = new List(); public List ApplicationDepartments { get; set; } = new List(); }