自动化立体仓库 - WMS系统
src/main/java/com/zy/asrs/entity/PlaQty.java
@@ -1,5 +1,6 @@
package com.zy.asrs.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;
@@ -19,7 +20,10 @@
    private String batch;
    //包装号
    private String packageNo;
    private Integer packageNo;
    //牌号
    private String brand;
    //单据明细id
    private Long orderDetlId;
@@ -39,7 +43,31 @@
    //创建时间
    private Date createTime;
    public PlaQty(String batch, String packageNo, Long orderDetlId, Long orderId, String orderNo, Double qtyAnfme, String locNo, Date createTime) {
    @TableField("pakout_time")
    private String pakoutTime;
    @TableField("order_weight")
    private Double orderWeight;
    @TableField("handler_by")
    private String handlerBy;
    @TableField("transfer")
    private String transfer;
    @TableField("customer")
    private String customer;
    @TableField("allocate")
    private String allocate;
    @TableField("memo")
    private String memo;
    //退回重量
    private Double returned;
    public PlaQty(String batch, Integer packageNo, Long orderDetlId, Long orderId, String orderNo, Double qtyAnfme, String locNo, Date createTime) {
        this.batch = batch;
        this.packageNo = packageNo;
        this.orderDetlId = orderDetlId;
@@ -49,4 +77,8 @@
        this.createTime = createTime;
        this.orderId = orderId;
    }
    public PlaQty(){
    }
}