|
@@ -14,6 +14,7 @@ import com.diagbot.dto.RespDTO;
|
|
import com.diagbot.facade.ModuleInfoFacade;
|
|
import com.diagbot.facade.ModuleInfoFacade;
|
|
import com.diagbot.vo.AddModuleInfoVO;
|
|
import com.diagbot.vo.AddModuleInfoVO;
|
|
import com.diagbot.vo.DeleteModuleVO;
|
|
import com.diagbot.vo.DeleteModuleVO;
|
|
|
|
+import com.diagbot.vo.GetAllDeptAndDisInfoVO;
|
|
import com.diagbot.vo.GetModuleDetailInfoVO;
|
|
import com.diagbot.vo.GetModuleDetailInfoVO;
|
|
import com.diagbot.vo.GetModuleInfoOneVO;
|
|
import com.diagbot.vo.GetModuleInfoOneVO;
|
|
import com.diagbot.vo.GetModuleInfoVO;
|
|
import com.diagbot.vo.GetModuleInfoVO;
|
|
@@ -160,8 +161,8 @@ public class ModuleInfoController {
|
|
notes = "")
|
|
notes = "")
|
|
@PostMapping("/getAllDeptAndDisInfo")
|
|
@PostMapping("/getAllDeptAndDisInfo")
|
|
@SysLogger("getAllDeptAndDisInfo")
|
|
@SysLogger("getAllDeptAndDisInfo")
|
|
- public RespDTO<GetAllDeptAndDisInfoDTO> getAllDeptAndDisInfo() {
|
|
|
|
- GetAllDeptAndDisInfoDTO date = moduleInfoFacade.getAllDeptAndDisInfo();
|
|
|
|
|
|
+ public RespDTO<GetAllDeptAndDisInfoDTO> getAllDeptAndDisInfo(GetAllDeptAndDisInfoVO getAllDeptAndDisInfoVO) {
|
|
|
|
+ GetAllDeptAndDisInfoDTO date = moduleInfoFacade.getAllDeptAndDisInfo(getAllDeptAndDisInfoVO);
|
|
return RespDTO.onSuc(date);
|
|
return RespDTO.onSuc(date);
|
|
}
|
|
}
|
|
|
|
|