namespace MES.Service.Dto.service { public class AsnInfo { /// /// 工单单号 /// public string tickeNo { get; set; } /// /// SN号 /// public string snNo { get; set; } /// /// 站号 /// public string workstationNo { get; set; } /// /// SN状态(OK,NG) /// public string snState { get; set; } /// /// 产测登陆号 /// public string loginId { get; set; } /// /// 失败项目 /// public List failItems { get; set; } } /// /// 产测SN失败项明细表 /// public class CcFailItems { /// /// 不良问题 /// public string DefectIssue { get; set; } /// /// 初步原因 /// public string RootCause { get; set; } /// /// 维修方案/方法 /// public string RepairMethod { get; set; } /// /// 不良物料处理 /// public string MaterialHandling { get; set; } } }