#
luxiaotao1123
2021-09-09 e1749547c76a5d8bae94e47d38d4d75b481610c1
src/main/java/zy/cloud/wms/manager/entity/OrderDetl.java
@@ -1,7 +1,9 @@
package zy.cloud.wms.manager.entity;
import com.baomidou.mybatisplus.annotations.TableField;
import com.baomidou.mybatisplus.annotations.TableId;
import com.baomidou.mybatisplus.annotations.TableName;
import com.baomidou.mybatisplus.enums.IdType;
import com.core.common.Cools;
import com.core.common.SpringUtils;
import io.swagger.annotations.ApiModelProperty;
@@ -22,6 +24,7 @@
     * ID
     */
    @ApiModelProperty(value= "ID")
    @TableId(value = "id", type = IdType.AUTO)
    private Long id;
    /**
@@ -109,7 +112,7 @@
     * 数量
     */
    @ApiModelProperty(value= "数量")
    private Integer count;
    private Double count;
    /**
     * 重量
@@ -159,8 +162,7 @@
    public OrderDetl() {}
    public OrderDetl(Long id,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) {
        this.id = id;
    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;
@@ -185,7 +187,6 @@
    }
//    OrderDetl orderDetl = new OrderDetl(
//            null,    // ID
//            null,    // 订单内码
//            null,    // 数量
//            null,    // 商品编码
@@ -330,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;
    }