成品发货邢增字段

This commit is contained in:
yf001217 2026-06-05 17:42:12 +08:00
parent e57e0bdbd5
commit 4a7e044126
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;
}