#
luxiaotao1123
2021-03-31 8f1fa732500e18863a7f79a054c241c68b192147
src/main/java/zy/cloud/wms/manager/entity/CustOrder.java
@@ -55,10 +55,23 @@
    private Double qty;
    /**
     * 总数量
     */
    @ApiModelProperty(value= "总数量")
    private Double total;
    /**
     * 商品单价
     */
    @ApiModelProperty(value= "商品单价")
    private Double price;
    /**
     * 商品单价
     */
    @ApiModelProperty(value= "商品单价")
    @TableField("row_no")
    private Double rowNo;
    /**
     * 商品备注
@@ -69,7 +82,7 @@
    /**
     * 状态 1: 待处理  2: 已完成  3: 取消  4: 异常  
     */
    @ApiModelProperty(value= "状态 0: 载入中 1: 待处理  2: 已完成  3: 取消  4: 异常  ")
    @ApiModelProperty(value= "状态 0: 载入中 1: 待处理  2: 未拣货  3: 取消  4: 已完成  ")
    private Integer status;
    /**
@@ -94,14 +107,16 @@
    public CustOrder() {}
    public CustOrder(String number,String billDate,String bTypeId,String eTypeId,String userCode,Double qty,Double price,String comment,Integer status,Date createTime,Date updateTime,String memo) {
    public CustOrder(String number,String billDate,String bTypeId,String eTypeId,String userCode,Double qty,Double total,Double price, Double rowNo, String comment,Integer status,Date createTime,Date updateTime,String memo) {
        this.number = number;
        this.billDate = billDate;
        this.bTypeId = bTypeId;
        this.eTypeId = eTypeId;
        this.userCode = userCode;
        this.qty = qty;
        this.total = total;
        this.price = price;
        this.rowNo = rowNo;
        this.comment = comment;
        this.status = status;
        this.createTime = createTime;
@@ -172,12 +187,28 @@
        this.qty = qty;
    }
    public Double getTotal() {
        return total;
    }
    public void setTotal(Double total) {
        this.total = total;
    }
    public Double getPrice() {
        return price;
    }
    public void setPrice(Double price) {
        this.price = price;
    }
    public Double getRowNo() {
        return rowNo;
    }
    public void setRowNo(Double rowNo) {
        this.rowNo = rowNo;
    }
    public String getComment() {
@@ -200,11 +231,11 @@
            case 1:
                return "待处理";
            case 2:
                return "已完成";
                return "未拣货";
            case 3:
                return "取消";
            case 4:
                return "异常";
                return "已完成";
            default:
                return String.valueOf(this.status);
        }