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