|
@ -88,7 +88,7 @@ public class IcPartyActivityController implements ResultDataResolver { |
|
|
*/ |
|
|
*/ |
|
|
@PostMapping("search") |
|
|
@PostMapping("search") |
|
|
public Result<PageData<IcPartyActivityDTO>> page(@LoginUser TokenDto tokenDto,@RequestBody PartyActivityFormDTO formDTO){ |
|
|
public Result<PageData<IcPartyActivityDTO>> page(@LoginUser TokenDto tokenDto,@RequestBody PartyActivityFormDTO formDTO){ |
|
|
formDTO.setCustomerId(formDTO.getCustomerId()); |
|
|
formDTO.setCustomerId(tokenDto.getCustomerId()); |
|
|
PageData<IcPartyActivityDTO> page = icPartyActivityService.search(formDTO); |
|
|
PageData<IcPartyActivityDTO> page = icPartyActivityService.search(formDTO); |
|
|
return new Result<PageData<IcPartyActivityDTO>>().ok(page); |
|
|
return new Result<PageData<IcPartyActivityDTO>>().ok(page); |
|
|
} |
|
|
} |
|
|