| | |
| | | SysDept sysDept = new SysDept(); |
| | | sysDept.setOrgid(schedule.getOrgid()); |
| | | sysDept.setDeptType("1"); |
| | | sysDept.setDeptCodes(Arrays.asList(split)); |
| | | sysDept.setDeptCodes(new ArrayList<>(Arrays.asList(split))); |
| | | |
| | | list = sysDeptService.selectDeptList(sysDept); |
| | | } |
| | | |
| | |
| | | SysDept sysDept = new SysDept(); |
| | | sysDept.setOrgid(schedule.getOrgid()); |
| | | sysDept.setDeptType("2"); |
| | | sysDept.setDeptCodes(Arrays.asList(split)); |
| | | sysDept.setDeptCodes(new ArrayList<>(Arrays.asList(split))); |
| | | list = sysDeptService.selectDeptList(sysDept); |
| | | } |
| | | } |
| | |
| | | if(ObjectUtils.isNotEmpty(schedule) && StringUtils.isNotEmpty(schedule.getIcd10Codes())){ |
| | | Icd10 icd10 = new Icd10(); |
| | | String[] split = schedule.getIcd10Codes().split(","); |
| | | icd10.setIcdcodes(Arrays.asList(split)); |
| | | icd10.setIcdcodes(new ArrayList<>(Arrays.asList(split))); |
| | | icd10.setOrgid(schedule.getOrgid()); |
| | | list = icd10Service.selectIcd10List(icd10); |
| | | } |