|
|
@ -484,9 +484,9 @@ public class CustomerStaffController { |
|
|
|
* @Description 【事件】网格员服务电话 |
|
|
|
**/ |
|
|
|
@PostMapping(value = "gridmobilelist") |
|
|
|
public Result<List<GridMobileListResultDTO>> gridMobileList(@RequestBody GridMobileListFormDTO formDTO) { |
|
|
|
public Result<List<GridMobileListResultDTO>> gridMobileList(@LoginUser TokenDto tokenDto, @RequestBody GridMobileListFormDTO formDTO) { |
|
|
|
ValidatorUtils.validateEntity(formDTO, GridMobileListFormDTO.Gridobile.class); |
|
|
|
return new Result<List<GridMobileListResultDTO>>().ok(customerStaffService.gridMobileList(formDTO.getGridId())); |
|
|
|
return new Result<List<GridMobileListResultDTO>>().ok(customerStaffService.gridMobileList(formDTO.getGridId(), tokenDto.getUserId())); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|