#
luxiaotao1123
2021-04-02 967bfd405284931fc69e4bf92636cd753215c982
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= "商品编号")
@@ -65,6 +72,13 @@
     */
    @ApiModelProperty(value= "商品单价")
    private Double price;
    /**
     * 商品单价
     */
    @ApiModelProperty(value= "商品单价")
    @TableField("row_no")
    private Integer rowNo;
    /**
     * 商品备注
@@ -100,15 +114,17 @@
    public CustOrder() {}
    public CustOrder(String number,String billDate,String bTypeId,String eTypeId,String userCode,Double qty,Double total,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;
@@ -195,6 +211,14 @@
        this.price = price;
    }
    public Integer getRowNo() {
        return rowNo;
    }
    public void setRowNo(Integer rowNo) {
        this.rowNo = rowNo;
    }
    public String getComment() {
        return comment;
    }
@@ -267,5 +291,11 @@
        this.memo = memo;
    }
    public Integer getVchcode() {
        return vchcode;
    }
    public void setVchcode(Integer vchcode) {
        this.vchcode = vchcode;
    }
}