自动化立体仓库 - WMS系统
zhangchao
2024-11-04 59f80df1e377e8775969ca4acadfa2eadd6e37ae
src/main/java/com/zy/asrs/entity/AgvLocMast.java
@@ -9,6 +9,7 @@
import com.zy.asrs.entity.BasLocSts;
import com.zy.asrs.entity.BasWhs;
import com.zy.asrs.service.BasLocStsService;
import com.zy.asrs.service.BasLocType1Service;
import com.zy.asrs.service.BasWhsService;
import com.zy.system.entity.User;
import com.zy.system.service.UserService;
@@ -218,17 +219,12 @@
    }
    public String getLocType1$() {
        if (null == this.locType1){ return null; }
        switch (this.locType1){
            case 0:
                return "未知";
            case 1:
                return "低库位";
            case 2:
                return "高库位";
            default:
                return String.valueOf(this.locType1);
        BasLocType1Service service = SpringUtils.getBean(BasLocType1Service.class);
        BasLocType1 basLocType1 = service.selectById(this.locType1);
        if (!Cools.isEmpty(basLocType1)){
            return String.valueOf(basLocType1.getLocDesc());
        }
        return null;
    }
    public String getLocType2$() {