|
|
|
@ -1,6 +1,8 @@
|
|
|
|
|
package cn.estsh.i3plus.pojo.wms.bean;
|
|
|
|
|
|
|
|
|
|
import cn.estsh.i3plus.pojo.base.annotation.DynamicField;
|
|
|
|
|
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
|
|
|
|
import cn.estsh.i3plus.pojo.base.enumutil.CommonEnumUtil;
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
|
|
import io.swagger.annotations.Api;
|
|
|
|
|
import io.swagger.annotations.ApiParam;
|
|
|
|
@ -99,6 +101,10 @@ public class WmsQCSNErrorList extends BaseBean {
|
|
|
|
|
@ApiParam(value = "供应商编码")
|
|
|
|
|
private String vendorNo;
|
|
|
|
|
|
|
|
|
|
@Column(name = "VENDOR_NAME")
|
|
|
|
|
@ApiParam(value = "供应商名称")
|
|
|
|
|
private String vendorName;
|
|
|
|
|
|
|
|
|
|
@Column(name = "ERROR_CODE")
|
|
|
|
|
@ApiParam("不良代码")
|
|
|
|
|
private String errorCode;
|
|
|
|
@ -116,4 +122,9 @@ public class WmsQCSNErrorList extends BaseBean {
|
|
|
|
|
@ColumnDefault("0")
|
|
|
|
|
@ApiParam(value = "质检比例", example = "0")
|
|
|
|
|
public String qcScale;
|
|
|
|
|
|
|
|
|
|
@Column(name = "REF_SRC")
|
|
|
|
|
@ApiParam("关联单号")
|
|
|
|
|
@DynamicField(webFieldType = CommonEnumUtil.FIELD_TYPE.TEXT)
|
|
|
|
|
public String refSrc;
|
|
|
|
|
}
|
|
|
|
|