¶Ô±ÈÐÂÎļþ |
| | |
| | | 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>(); |
| | | } |