自动化立体仓库 - WMS系统
#
mrzhssss
2022-12-01 e19b4d3b6a68314887f78786c36ad97339d5faaf
src/main/java/com/zy/asrs/entity/WaitPakin.java
@@ -1,8 +1,10 @@
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.core.common.Cools;
import com.zy.common.utils.Synchro;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
@@ -16,6 +18,7 @@
    private static final long serialVersionUID = 1L;
    @TableId("zpallet")
    @ApiModelProperty(value= "托盘条码")
    private String zpallet;
@@ -26,12 +29,14 @@
    @TableField("loc_no")
    private String locNo;
    @TableId("matnr")
    @ApiModelProperty(value= "商品编号")
    private String matnr;
    @ApiModelProperty(value= "商品名称")
    private String maktx;
    @TableId("batch")
    @ApiModelProperty(value= "批号")
    private String batch;
@@ -120,7 +125,7 @@
    private Integer source;
    @ApiModelProperty(value= "要求检验 1: 是  0: 否  ")
    private Integer check;
    private Integer inspect;
    @ApiModelProperty(value= "危险品 1: 是  0: 否  ")
    private Integer danger;
@@ -177,15 +182,15 @@
        }
    }
    public String getCheck$(){
        if (null == this.check){ return null; }
        switch (this.check){
    public String getInspect$(){
        if (null == this.inspect){ return null; }
        switch (this.inspect){
            case 1:
                return "是";
            case 0:
                return "否";
            default:
                return String.valueOf(this.check);
                return String.valueOf(this.inspect);
        }
    }
@@ -215,4 +220,7 @@
        return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.appeTime);
    }
    public void sync(Object source) {
        Synchro.Copy(source, this);
    }
}