pdi查询新增字段

This commit is contained in:
yf001217 2026-06-15 18:57:00 +08:00
parent efd3df65db
commit 94f9008e75
2 changed files with 6 additions and 0 deletions

View File

@ -517,6 +517,7 @@ public class QmsPdiTaskRecordControllerService {
vo.setOrderNo(record.getOrderNo()); vo.setOrderNo(record.getOrderNo());
vo.setDeviceNo(record.getDeviceNo()); vo.setDeviceNo(record.getDeviceNo());
vo.setFactoryNo(record.getFactoryNo()); vo.setFactoryNo(record.getFactoryNo());
vo.setInspectionEnable(record.getInspectionEnable());
vo.setInspectionInspection(record.getInspectionInspection()); vo.setInspectionInspection(record.getInspectionInspection());
vo.setDetectionCompletionTime(record.getDetectionCompletionTime()); vo.setDetectionCompletionTime(record.getDetectionCompletionTime());
vo.setInspectionRuleId(record.getDetectionRulesId()); vo.setInspectionRuleId(record.getDetectionRulesId());

View File

@ -158,6 +158,11 @@ public class QmsPdiTaskRecordDetailVO {
*/ */
private Integer inspectionType; private Integer inspectionType;
/**
* 质检状态0为待检查1为检验中2为已完成3为待流转
*/
private Integer inspectionEnable;
/** /**
* 检测结果true=合格false=不合格 * 检测结果true=合格false=不合格
*/ */