|
|
@@ -366,8 +366,8 @@ public class WxCorpController {
|
|
|
* 标签用户列表
|
|
|
*/
|
|
|
@GetMapping("/get/tag/user/list")
|
|
|
- public Result<Page<CorpUserIntentionView>> getCorpUserIntentionView(Long userId, String nickname, String tagId, String date) {
|
|
|
- Page<CorpUserIntentionView> page = corpUserTagMapper.getCorpUserIntentionView(userId, nickname, tagId, date);
|
|
|
+ public Result<Page<CorpUserIntentionView>> getCorpUserIntentionView(Long userId, String nickname, String tagId, String date, @RequestParam(defaultValue = "1") Integer start, @RequestParam(defaultValue = "10") Integer limit) {
|
|
|
+ Page<CorpUserIntentionView> page = corpUserTagMapper.getCorpUserIntentionView(new Page<>(start, limit), userId, nickname, tagId, date);
|
|
|
return GatewayResponse.SUCCESS.newBuilder().toResult(page);
|
|
|
}
|
|
|
}
|