自动化立体仓库 - WMS系统
chen.llin
2 天以前 46168fbb7c925b0ec04def176095e967720e684a
src/main/java/com/zy/asrs/entity/TaskLog.java
@@ -2,6 +2,7 @@
import com.baomidou.mybatisplus.annotations.TableField;
import com.baomidou.mybatisplus.annotations.TableName;
import com.baomidou.mybatisplus.mapper.EntityWrapper;
import com.core.common.Cools;
import com.core.common.SpringUtils;
import com.zy.asrs.service.*;
@@ -23,6 +24,13 @@
    @ApiModelProperty(value = "")
    private Long id;
    /**
     * 任务类型: agv  , crn
     */
    @ApiModelProperty(value = "任务类型: agv  , crn")
    @TableField("task_type")
    private String taskType;
    /**
     * 工作号
@@ -457,21 +465,11 @@
    }
    public String getStaNo$() {
        BasDevpService service = SpringUtils.getBean(BasDevpService.class);
        BasDevp basDevp = service.selectById(this.staNo);
        if (!Cools.isEmpty(basDevp)) {
            return String.valueOf(basDevp.getDevNo());
        }
        return null;
        return this.staNo;
    }
    public String getSourceStaNo$() {
        BasDevpService service = SpringUtils.getBean(BasDevpService.class);
        BasDevp basDevp = service.selectById(this.sourceStaNo);
        if (!Cools.isEmpty(basDevp)) {
            return String.valueOf(basDevp.getDevNo());
        }
        return null;
        return this.sourceStaNo;
    }
    public String getSourceLocNo$() {