Merge remote-tracking branch '惠信/feature/NoScanning' into feature/NoScanning

This commit is contained in:
曹鹏飞 2026-06-05 17:48:07 +08:00
commit dd6c23e73a
3 changed files with 30 additions and 0 deletions

View File

@ -120,5 +120,15 @@ public class OutProduceTicketInfoVO {
*/
private String docYear;
/**
* 检测状态0=未检测1=检测中2=已检测
*/
private Short detectionStatus;
/**
* 检测结果true=合格false=不合格
*/
private Boolean detectionResults;
private List<OutProduceInfoItemVO> items;
}

View File

@ -115,4 +115,14 @@ public class OutProduceVO {
* 物料凭证年度
*/
private String docYear;
/**
* 检测状态0=未检测1=检测中2=已检测
*/
private Short detectionStatus;
/**
* 检测结果true=合格false=不合格
*/
private Boolean detectionResults;
}

View File

@ -136,4 +136,14 @@ public class WmsOutProduce implements Serializable {
*/
@TableField("data_type")
private Integer dataType;
/**
* 检测状态0=未检测1=检测中2=已检测
*/
private Short detectionStatus;
/**
* 检测结果true=合格false=不合格
*/
private Boolean detectionResults;
}