自动化立体仓库 - WMS系统
#
lsh
2024-01-12 5d2a9f7225b046f0646f97d4ca3bd191650e6bbd
src/main/java/com/zy/asrs/entity/WrkDetl.java
@@ -4,6 +4,7 @@
import com.baomidou.mybatisplus.annotations.TableName;
import com.core.common.Cools;
import com.core.common.SpringUtils;
import com.zy.common.utils.Synchro;
import com.zy.system.entity.User;
import com.zy.system.service.UserService;
import io.swagger.annotations.ApiModelProperty;
@@ -203,7 +204,7 @@
    private Integer beBatch;
    /**
     * 保质期
     * 保质期 、、江铜:是否确认   1: 确认  2: 未确认
     */
    @ApiModelProperty(value= "保质期")
    @TableField("dead_time")
@@ -217,16 +218,17 @@
    private Integer deadWarn;
    /**
     * 制购 1: 制造  2: 采购  3: 外协
     * 制购 1: 制造  2: 采购  3: 外协 、、江铜:是否确认   1: 确认  2: 未确认
     */
    @ApiModelProperty(value= "制购 1: 制造  2: 采购  3: 外协  ")
    private Integer source;
    /**
     * 要求检验 1: 是  0: 否
     * 徐工汉云拆垛标记  0: 未拆(默认)  1: 已拆
     */
    @ApiModelProperty(value= "要求检验 1: 是  0: 否  ")
    private Integer check;
    private Integer inspect;
    /**
     * 危险品 1: 是  0: 否
@@ -268,6 +270,13 @@
    @ApiModelProperty(value= "备注")
    private String memo;
    /**
     * 卷信息ID
     */
    @ApiModelProperty(value= "卷信息ID")
    @TableField("roll_up")
    private Long rollUp;
    public String getIoTime$(){
        if (Cools.isEmpty(this.ioTime)){
            return "";
@@ -287,29 +296,49 @@
        }
    }
//    public String getSource$(){
//        if (null == this.source){ return null; }
//        switch (this.source){
//            case 1:
//                return "制造";
//            case 2:
//                return "采购";
//            case 3:
//                return "外协";
//            default:
//                return String.valueOf(this.source);
//        }
//    }
    public String getSource$(){
        if (null == this.source){ return null; }
        if (null == this.source){ return "未确认"; }
        switch (this.source){
            case 1:
                return "制造";
            case 2:
                return "采购";
            case 3:
                return "外协";
                return "已确认";
            default:
                return String.valueOf(this.source);
                return "未确认";
        }
    }
    public String getCheck$(){
        if (null == this.check){ return null; }
        switch (this.check){
    public String getDeadTime(){
        if (null == this.source){ return "未确认"; }
        switch (this.source){
            case 1:
                return "已确认";
            default:
                return "未确认";
        }
    }
    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);
        }
    }
@@ -357,4 +386,8 @@
        return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.appeTime);
    }
    public void sync(Object source) {
        Synchro.Copy(source, this);
    }
}