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<Applicant> Applicants { get; set; } = new List<Applicant>();
|
|
public List<ApplicationDepartment> ApplicationDepartments { get; set; } = new List<ApplicationDepartment>();
|
}
|
|
// 保持原有嵌套类定义
|
public class Applicant
|
{
|
|
public string? applicant { get; set; } // 统一可空性
|
}
|
|
public class ApplicationDepartment
|
{
|
|
public string? applicationdepartment { get; set; }
|
}
|