#
qlsxk
3 天以前 8c7b4949dfcf875cc537304d34a7f6960cbb0c10
src/main/java/com/zy/asrs/entity/WrkMastLog.java
@@ -8,7 +8,6 @@
import com.core.common.SpringUtils;
import com.zy.asrs.mapper.BasWrkIotypeMapper;
import com.zy.asrs.mapper.BasWrkStatusMapper;
import com.zy.asrs.service.BasDevpService;
import com.zy.asrs.service.LocMastService;
import com.zy.asrs.service.WrkMastService;
import com.zy.common.utils.Synchro;
@@ -164,7 +163,15 @@
     * WMS任务号
     */
    @ApiModelProperty(value= "WMS任务号")
    @TableField(value = "wms_wrk_no")
    private String wmsWrkNo;
    /**
     * 系统消息
     */
    @ApiModelProperty(value= "系统消息")
    @TableField(value = "system_msg")
    private String systemMsg;
    public WrkMastLog() {}
@@ -200,24 +207,6 @@
        LocMast locMast = service.selectById(this.locNo);
        if (!Cools.isEmpty(locMast)){
            return String.valueOf(locMast.getLocNo());
        }
        return null;
    }
    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;
    }
    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;
    }