|
|
@ -332,13 +332,14 @@ public class ApiAppUserController { |
|
|
|
|
|
|
|
|
/* |
|
|
/* |
|
|
* 志愿者列表 |
|
|
* 志愿者列表 |
|
|
|
|
|
* @param tokenDto |
|
|
* @param dto |
|
|
* @param dto |
|
|
* @return com.elink.esua.epdc.commons.tools.utils.Result<java.util.List<com.elink.esua.epdc.dto.epdc.result.EpdcAppVolunteerListResultDTO>> |
|
|
* @return com.elink.esua.epdc.commons.tools.utils.Result<java.util.List<com.elink.esua.epdc.dto.epdc.result.EpdcAppVolunteerListResultDTO>> |
|
|
* @Author zhangyong |
|
|
* @Author zhangyong |
|
|
* @Date 15:33 2020-05-18 |
|
|
* @Date 15:33 2020-05-18 |
|
|
**/ |
|
|
**/ |
|
|
@GetMapping("volunteer/list") |
|
|
@GetMapping("volunteer/list") |
|
|
public Result<List<EpdcAppVolunteerListResultDTO>> volunteerList(EpdcAppVolunteerListFormDTO dto) { |
|
|
public Result<List<EpdcAppVolunteerListResultDTO>> volunteerList(@LoginUser TokenDto tokenDto, EpdcAppVolunteerListFormDTO dto) { |
|
|
ValidatorUtils.validateEntity(dto); |
|
|
ValidatorUtils.validateEntity(dto); |
|
|
return appUserService.listVolunteer(dto); |
|
|
return appUserService.listVolunteer(dto); |
|
|
} |
|
|
} |
|
|
|