#
luxiaotao1123
2021-09-09 e1749547c76a5d8bae94e47d38d4d75b481610c1
src/main/java/zy/cloud/wms/manager/entity/OrderDetl.java
@@ -112,7 +112,7 @@
     * 数量
     */
    @ApiModelProperty(value= "数量")
    private Integer count;
    private Double count;
    /**
     * 重量
@@ -162,7 +162,7 @@
    public OrderDetl() {}
    public OrderDetl(Long orderId,Double anfme,String matnr,String maktx,String name,String specs,String model,String batch,String unit,String barcode,String supplier,Double unitPrice,Integer itemNum,Integer count,Double weight,Integer status,Long createBy,Date createTime,Long updateBy,Date updateTime,String memo) {
    public OrderDetl(Long orderId,Double anfme,String matnr,String maktx,String name,String specs,String model,String batch,String unit,String barcode,String supplier,Double unitPrice,Integer itemNum,Double count,Double weight,Integer status,Long createBy,Date createTime,Long updateBy,Date updateTime,String memo) {
        this.orderId = orderId;
        this.anfme = anfme;
        this.matnr = matnr;
@@ -331,11 +331,11 @@
        this.itemNum = itemNum;
    }
    public Integer getCount() {
    public Double getCount() {
        return count;
    }
    public void setCount(Integer count) {
    public void setCount(Double count) {
        this.count = count;
    }