#
luxiaotao1123
2021-04-03 918cf69e763d30a1315fa1c83a964dae4dd88f12
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= "商品编号")
@@ -55,10 +62,23 @@
    private Double qty;
    /**
     * 总数量
     */
    @ApiModelProperty(value= "总数量")
    private Double total;
    /**
     * 商品单价
     */
    @ApiModelProperty(value= "商品单价")
    private Double price;
    /**
     * 商品单价
     */
    @ApiModelProperty(value= "商品单价")
    @TableField("row_no")
    private Integer rowNo;
    /**
     * 商品备注
@@ -94,14 +114,17 @@
    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,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;
        this.price = price;
        this.rowNo = rowNo;
        this.comment = comment;
        this.status = status;
        this.createTime = createTime;
@@ -172,12 +195,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 Integer getRowNo() {
        return rowNo;
    }
    public void setRowNo(Integer rowNo) {
        this.rowNo = rowNo;
    }
    public String getComment() {
@@ -252,5 +291,11 @@
        this.memo = memo;
    }
    public Integer getVchcode() {
        return vchcode;
    }
    public void setVchcode(Integer vchcode) {
        this.vchcode = vchcode;
    }
}