|
@ -51,7 +51,6 @@ public class PsychologistController { |
|
|
private PsychologistService psychologistService; |
|
|
private PsychologistService psychologistService; |
|
|
|
|
|
|
|
|
@GetMapping("page") |
|
|
@GetMapping("page") |
|
|
@DataFilter(tableAlias = "p", isPendingCreator = false, prefix = "AND") |
|
|
|
|
|
public Result<PageData<PsychologistDTO>> page(@RequestParam Map<String, Object> params) { |
|
|
public Result<PageData<PsychologistDTO>> page(@RequestParam Map<String, Object> params) { |
|
|
PageData<PsychologistDTO> page = psychologistService.page(params); |
|
|
PageData<PsychologistDTO> page = psychologistService.page(params); |
|
|
return new Result<PageData<PsychologistDTO>>().ok(page); |
|
|
return new Result<PageData<PsychologistDTO>>().ok(page); |
|
|