Junjie
2024-09-13 a1a7c03eae40f4b0344fce652e1a240cf5283624
zy-asrs-wms/src/main/java/com/zy/asrs/wms/asrs/entity/TaskDetlLog.java
@@ -43,7 +43,7 @@
     * ID
     */
    @ApiModelProperty(value= "ID")
    @TableId(value = "id", type = IdType.INPUT)
    @TableId(value = "id", type = IdType.AUTO)
    private Long id;
    /**
@@ -246,6 +246,15 @@
        return null;
    }
    public TaskLog getTask$(){
        TaskLogService service = SpringUtils.getBean(TaskLogService.class);
        TaskLog taskLog = service.getById(this.getTaskId());
        if (!Cools.isEmpty(taskLog)){
            return taskLog;
        }
        return null;
    }
    public String getHostId$(){
        HostService service = SpringUtils.getBean(HostService.class);
        Host host = service.getById(this.hostId);