#
luxiaotao1123
2021-03-31 c8f89c1e9353d6e530b8b7fe93c15686251b7d65
src/main/java/zy/cloud/wms/manager/entity/CustOrder.java
@@ -67,6 +67,13 @@
    private Double price;
    /**
     * 商品单价
     */
    @ApiModelProperty(value= "商品单价")
    @TableField("row_no")
    private Double rowNo;
    /**
     * 商品备注
     */
    @ApiModelProperty(value= "商品备注")
@@ -100,7 +107,7 @@
    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,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;
@@ -109,6 +116,7 @@
        this.qty = qty;
        this.total = total;
        this.price = price;
        this.rowNo = rowNo;
        this.comment = comment;
        this.status = status;
        this.createTime = createTime;
@@ -195,6 +203,14 @@
        this.price = price;
    }
    public Double getRowNo() {
        return rowNo;
    }
    public void setRowNo(Double rowNo) {
        this.rowNo = rowNo;
    }
    public String getComment() {
        return comment;
    }