自动化立体仓库 - WMS系统
#
lsh
2024-01-24 6eecac9d82c970acf021669e3bb4cd782f36bbfe
src/main/java/com/zy/asrs/entity/WrkDetlLog.java
@@ -226,7 +226,7 @@
     * 要求检验 1: 是  0: 否
     */
    @ApiModelProperty(value= "要求检验 1: 是  0: 否  ")
    private Integer check;
    private Integer inspect;
    /**
     * 危险品 1: 是  0: 否
@@ -268,6 +268,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 +294,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);
        }
    }