自动化立体仓库 - WMS系统
zyx
2024-01-08 71d838e032d13a46a07917f5606862496220ea74
src/main/java/com/zy/asrs/entity/Pla.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;
@@ -18,96 +19,153 @@
    //入库时间
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    @TableField("pakin_time")
    private String pakinTime;
    //批号
    @TableField("batch")
    private String batch;
    //包装号
    @TableField("package_no")
    private String packageNo;
    //牌号
    @TableField("brand")
    private String brand;
    //重量
    @TableField("weight")
    private Double weight;
    //车间
    @TableField("workshop")
    private String workshop;
    //生产线
    @TableField("line")
    private String line;
    //包装类型
    @TableField("package_type")
    private String packageType;
    //托盘类型
    @TableField("zpallet_type")
    private String zpalletType;
    //缠膜
    @TableField("film_wrap")
    private String filmWrap;
    //熔指
    @TableField("finger_melting")
    private Double fingerMelting;
    //熔点
    @TableField("fusing_point")
    private Double fusingPoint;
    //挥发份1
    @TableField("vadf1")
    private Double vadf1;
    //挥发份2
    @TableField("vadf2")
    private Double vadf2;
    //黄度
    @TableField("yellowness")
    private Double yellowness;
    //不透明度
    @TableField("opacity")
    private Double opacity;
    //水分
    @TableField("water")
    private Double water;
    //L值
    @TableField("l")
    private Double l;
    //a值
    @TableField("a")
    private Double a;
    //b值
    @TableField("b")
    private Double b;
    //填充
    @TableField("fill_in")
    private Double fillIn;
    //质量状态
    @TableField("mass_state")
    private String massState;
    //质量问题
    @TableField("problem")
    private String problem;
    //仓库
    @TableField("stash")
    private String stash;
    //库位
    @TableField("loc_no")
    private String locNo;
    //剩余重量
    @TableField("weight_anfme")
    private Double weightAnfme = 0.0;
    //剩余重量
    //待出库数量
    @TableField("qty_anfme")
    private Double qtyAnfme = 0.0;
    //状态
    @TableField("status")
    private String status;
    //步骤
    @TableField("step")
    private int step;
    @TableField("create_time")
    private Date createTime;
    @TableField("modify_time")
    private Date modifyTime;
    @TableField("create_user")
    private String createUser;
    @TableField("modify_user")
    private String modifyUser;
    @TableField("order_no")
    private String orderNo;
    @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;
}