MGN修复BUG

yun-zuoyi
puxiao.liao 5 years ago
parent 15d915370e
commit 61b87d2d00

@ -103,4 +103,14 @@ public class WmsQCSNErrorList extends BaseBean {
@Column(name = "ERROR_DESC_RDD")
@ApiParam("不良描述")
private String errorDescRdd;
@Column(name = "RC_QTY", columnDefinition = "decimal(18,8)", nullable = false)
@ColumnDefault("0")
@ApiParam(value = "收货数量", example = "0")
public Double rcQty;
@Column(name = "QC_SCALE", columnDefinition = "decimal(18,8)", nullable = false)
@ColumnDefault("0")
@ApiParam(value = "质检比例", example = "0")
public String qcScale;
}

@ -0,0 +1,40 @@
package cn.estsh.i3plus.pojo.wms.bean;
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiParam;
import lombok.Data;
/**
* @Description : MGN()
* @Reference :
* @Author : puxiao.liao
* @CreateDate : 2020-09-01 14:37
* @Modify:
**/
@Data
@Api("质检报表")
public class WmsQCViewReport extends BaseBean {
private static final long serialVersionUID = 4905945381732744790L;
@ApiParam("单号")
private String orderNo;
@ApiParam("检验数量")
private double sampleQty;
@ApiParam("不合格数量")
private double rejectQty;
@ApiParam("检验员")
private String qcUser;
@ApiParam(value = "检验时间")
private String qcTime;
@ApiParam(value = "收货数量")
public Double rcQty;
@ApiParam(value = "质检比例")
public String qcScale;
}
Loading…
Cancel
Save