|
@@ -25,7 +25,6 @@ import org.springframework.beans.factory.annotation.Qualifier;
|
|
|
import org.springframework.stereotype.Component;
|
|
|
|
|
|
import java.util.ArrayList;
|
|
|
-import java.util.HashMap;
|
|
|
import java.util.List;
|
|
|
import java.util.Map;
|
|
|
|
|
@@ -135,7 +134,7 @@ public class QuestionUsualFacade extends QuestionUsualServiceImpl {
|
|
|
* @return
|
|
|
*/
|
|
|
public IPage<GetDeptInfoDTO> getDeptInfos(GetDeptInfoVO getDeptInfoVO) {
|
|
|
- //获取标签修改时间和修改人
|
|
|
+ /*//获取标签修改时间和修改人
|
|
|
QueryWrapper<QuestionUsual> queryWrapper = new QueryWrapper<>();
|
|
|
queryWrapper.eq("is_deleted", IsDeleteEnum.N.getKey());
|
|
|
List<QuestionUsual> questionUsualList = this.list(queryWrapper);
|
|
@@ -144,16 +143,16 @@ public class QuestionUsualFacade extends QuestionUsualServiceImpl {
|
|
|
for (QuestionUsual questionUsual : questionUsualList) {
|
|
|
map.put(questionUsual.getDeptId(), questionUsual);
|
|
|
}
|
|
|
- }
|
|
|
+ }*/
|
|
|
//分页查询科室
|
|
|
IPage<GetDeptInfoDTO> iPage = deptInfoFacade.getAllDeptInfo(getDeptInfoVO);
|
|
|
- //将科室的修改人替换成常用标签的修改人
|
|
|
+ /*//将科室的修改人替换成常用标签的修改人
|
|
|
for (GetDeptInfoDTO getDeptInfoDTO : iPage.getRecords()) {
|
|
|
if (map.get(getDeptInfoDTO.getId()) != null) {
|
|
|
getDeptInfoDTO.setModifier(map.get(getDeptInfoDTO.getId()).getModifier());
|
|
|
getDeptInfoDTO.setGmtModified(map.get(getDeptInfoDTO.getId()).getGmtModified());
|
|
|
}
|
|
|
- }
|
|
|
+ }*/
|
|
|
//获取用户信息
|
|
|
List<String> ids = new ArrayList<>();
|
|
|
for (GetDeptInfoDTO getDeptInfoDTO : iPage.getRecords()) {
|