|
|
|
@ -48,21 +48,25 @@ public class WmsTestResultDetails extends BaseBean {
|
|
|
|
|
@ApiParam("物料名称")
|
|
|
|
|
public String partName;
|
|
|
|
|
|
|
|
|
|
@Column(name = "CHECK_TYPE")
|
|
|
|
|
@ApiParam("大检测项类型")
|
|
|
|
|
@AnnoOutputColumn(refClass = WmsEnumUtil.BH_CHECK_TYPE.class, refForeignKey = "value", value = "description")
|
|
|
|
|
public Integer checkType;
|
|
|
|
|
@Column(name = "CHECK_TYPE_CODE")
|
|
|
|
|
@ApiParam("检测大类")
|
|
|
|
|
public String checkTypeCode;
|
|
|
|
|
|
|
|
|
|
@Column(name = "qr_code")
|
|
|
|
|
@Column(name = "QR_CODE")
|
|
|
|
|
@ApiParam("二维码")
|
|
|
|
|
public String qrCode;
|
|
|
|
|
|
|
|
|
|
@Column(name = "is_qualified")
|
|
|
|
|
@Column(name = "IS_QUALIFIED")
|
|
|
|
|
@ApiParam("是否合格")
|
|
|
|
|
@AnnoOutputColumn(refClass = WmsEnumUtil.TRUE_OR_FALSE.class, refForeignKey = "value", value = "description")
|
|
|
|
|
public Integer isQualified;
|
|
|
|
|
|
|
|
|
|
@Column(name = "check_value")
|
|
|
|
|
@Column(name = "IS_FINISH")
|
|
|
|
|
@ApiParam("是否完成")
|
|
|
|
|
@AnnoOutputColumn(refClass = WmsEnumUtil.TRUE_OR_FALSE.class, refForeignKey = "value", value = "description")
|
|
|
|
|
public Integer isFinish;
|
|
|
|
|
|
|
|
|
|
@Column(name = "CHECK_VALUE")
|
|
|
|
|
@ApiParam("检测值")
|
|
|
|
|
public String checkValue;
|
|
|
|
|
|
|
|
|
@ -73,9 +77,9 @@ public class WmsTestResultDetails extends BaseBean {
|
|
|
|
|
public WmsTestResultDetails() {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public WmsTestResultDetails(String partNo, Integer checkType, String bhCode, Long checkSize) {
|
|
|
|
|
public WmsTestResultDetails(String partNo, String checkTypeCode, String bhCode, Long checkSize) {
|
|
|
|
|
this.partNo = partNo;
|
|
|
|
|
this.checkType = checkType;
|
|
|
|
|
this.checkTypeCode = checkTypeCode;
|
|
|
|
|
this.bhCode = bhCode;
|
|
|
|
|
this.checkSize = checkSize;
|
|
|
|
|
}
|
|
|
|
|