| | |
| | | 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; |
| | |
| | | * ID |
| | | */ |
| | | @ApiModelProperty(value= "ID") |
| | | @TableId(value = "id", type = IdType.AUTO) |
| | | private Long id; |
| | | |
| | | /** |
| | |
| | | * 数量 |
| | | */ |
| | | @ApiModelProperty(value= "数量") |
| | | private Integer count; |
| | | private Double count; |
| | | |
| | | /** |
| | | * 重量 |
| | |
| | | |
| | | 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; |
| | |
| | | } |
| | | |
| | | // OrderDetl orderDetl = new OrderDetl( |
| | | // null, // ID |
| | | // null, // 订单内码 |
| | | // null, // 数量 |
| | | // null, // 商品编码 |
| | |
| | | this.itemNum = itemNum; |
| | | } |
| | | |
| | | public Integer getCount() { |
| | | public Double getCount() { |
| | | return count; |
| | | } |
| | | |
| | | public void setCount(Integer count) { |
| | | public void setCount(Double count) { |
| | | this.count = count; |
| | | } |
| | | |