| | |
| | | import com.baomidou.mybatisplus.annotations.TableName; |
| | | import zy.cloud.wms.manager.service.FlowStatusService; |
| | | import zy.cloud.wms.manager.service.ItemService; |
| | | import zy.cloud.wms.system.entity.Dept; |
| | | import zy.cloud.wms.system.service.DeptService; |
| | | |
| | | import java.io.Serializable; |
| | | |
| | |
| | | } |
| | | return null; |
| | | } |
| | | |
| | | public String getDutyDepartment$(){ |
| | | DeptService bean = SpringUtils.getBean(DeptService.class); |
| | | Dept id1 = bean.selectOne(new EntityWrapper<Dept>() |
| | | .eq("id", this.dutyDepartment)); |
| | | if (id1 != null){ |
| | | return id1.getName(); |
| | | }else { |
| | | return ""; |
| | | } |
| | | } |
| | | } |