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;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
import java.util.Date;
|
|
@Data
|
@TableName("asr_pla_detl")
|
public class Pla {
|
@ApiModelProperty(value= "ID")
|
@TableId(value = "id", type = IdType.AUTO)
|
private Long id;
|
|
//入库时间
|
@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;
|
}
|