#
luxiaotao1123
2021-04-09 eb13b96cc3b01a3d44fbce6a730004e158418ab5
src/main/java/zy/cloud/wms/manager/entity/CustOrder.java
@@ -42,6 +42,13 @@
    private String eTypeId;
    /**
     * 单据自增ID
     */
    @ApiModelProperty(value= "单据自增ID")
    @TableField("vch_code")
    private Integer vchcode;
    /**
     * 商品编号
     */
    @ApiModelProperty(value= "商品编号")
@@ -71,7 +78,7 @@
     */
    @ApiModelProperty(value= "商品单价")
    @TableField("row_no")
    private Double rowNo;
    private Integer rowNo;
    /**
     * 商品备注
@@ -82,7 +89,7 @@
    /**
     * 状态 1: 待处理  2: 已完成  3: 取消  4: 异常  
     */
    @ApiModelProperty(value= "状态 0: 载入中 1: 待处理  2: 未拣货  3: 取消  4: 已完成  ")
    @ApiModelProperty(value= "状态 0: 载入中 1: 待处理  2: 未拣货  3: 取消  4: 已完成  5: 准备取消 ")
    private Integer status;
    /**
@@ -107,11 +114,12 @@
    public CustOrder() {}
    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) {
    public CustOrder(String number,String billDate,String bTypeId,String eTypeId,Integer vchcode,String userCode,Double qty,Double total,Double price, Integer rowNo, String comment,Integer status,Date createTime,Date updateTime,String memo) {
        this.number = number;
        this.billDate = billDate;
        this.bTypeId = bTypeId;
        this.eTypeId = eTypeId;
        this.vchcode = vchcode;
        this.userCode = userCode;
        this.qty = qty;
        this.total = total;
@@ -203,11 +211,11 @@
        this.price = price;
    }
    public Double getRowNo() {
    public Integer getRowNo() {
        return rowNo;
    }
    public void setRowNo(Double rowNo) {
    public void setRowNo(Integer rowNo) {
        this.rowNo = rowNo;
    }
@@ -236,6 +244,8 @@
                return "取消";
            case 4:
                return "已完成";
            case 5:
                return "准备取消";
            default:
                return String.valueOf(this.status);
        }
@@ -283,5 +293,11 @@
        this.memo = memo;
    }
    public Integer getVchcode() {
        return vchcode;
    }
    public void setVchcode(Integer vchcode) {
        this.vchcode = vchcode;
    }
}