#
luxiaotao1123
2021-03-25 af73582c1bd3c20e2e805d4df56c111073d3fd6f
src/main/java/zy/cloud/wms/manager/entity/Check.java
@@ -101,6 +101,13 @@
    private Double cekQty;
    /**
     * 差值
     */
    @ApiModelProperty(value= "差值")
    @TableField("diff_qty")
    private Double diffQty;
    /**
     * 盈亏 1: 盘盈  2: 盘亏  
     */
    @ApiModelProperty(value= "盈亏 1: 盘盈  2: 盘亏  ")
@@ -148,7 +155,7 @@
    public Check() {}
    public Check(String uuid,Long nodeId,String nodeUuid,String locNo,String matnr,String maktx,String unit,Long docId,String docNum,Double oriQty,Double cekQty,Integer settle,Integer status,Long createBy,Date createTime,Long updateBy,Date updateTime,String memo) {
    public Check(String uuid,Long nodeId,String nodeUuid,String locNo,String matnr,String maktx,String unit,Long docId,String docNum,Double oriQty,Double cekQty,Double diffQty,Integer settle,Integer status,Long createBy,Date createTime,Long updateBy,Date updateTime,String memo) {
        this.uuid = uuid;
        this.nodeId = nodeId;
        this.nodeUuid = nodeUuid;
@@ -160,6 +167,7 @@
        this.docNum = docNum;
        this.oriQty = oriQty;
        this.cekQty = cekQty;
        this.diffQty = diffQty;
        this.settle = settle;
        this.status = status;
        this.createBy = createBy;
@@ -295,6 +303,14 @@
        this.cekQty = cekQty;
    }
    public Double getDiffQty() {
        return diffQty;
    }
    public void setDiffQty(Double diffQty) {
        this.diffQty = diffQty;
    }
    public Integer getSettle() {
        return settle;
    }
@@ -323,9 +339,11 @@
        if (null == this.status){ return null; }
        switch (this.status){
            case 1:
                return "正常";
                return "待审核";
            case 2:
                return "已通过";
            case 0:
                return "禁用";
                return "取消";
            default:
                return String.valueOf(this.status);
        }