Browse Source

心理咨询增加头衔

hotfix/yujt_opt
zhangyuan 5 years ago
parent
commit
cc1a6cea86
  1. 5
      epdc-cloud-property/src/main/java/com/elink/esua/epdc/modules/psychology/controller/PsychologistTitleController.java

5
epdc-cloud-property/src/main/java/com/elink/esua/epdc/modules/psychology/controller/PsychologistTitleController.java

@ -91,4 +91,9 @@ public class PsychologistTitleController {
ExcelUtils.exportExcelToTarget(response, null, list, PsychologistTitleExcel.class);
}
@GetMapping("list")
public Result<List<PsychologistTitleDTO>> list(@RequestParam Map<String, Object> params) {
List<PsychologistTitleDTO> page = psychologistTitleService.list(params);
return new Result<List<PsychologistTitleDTO>>().ok(page);
}
}
Loading…
Cancel
Save