|
@@ -54,10 +54,11 @@ public class TaMateTagGroupController extends BaseController {
|
54
|
54
|
* @param pageSize
|
55
|
55
|
* @return
|
56
|
56
|
*/
|
57
|
|
- @RequestMapping(value="/mp/taMateTagGroup",method= RequestMethod.GET)
|
|
57
|
+ @RequestMapping(value="/{client}/taMateTagGroup",method= RequestMethod.GET)
|
58
|
58
|
@ApiOperation(value="列表", notes = "列表", httpMethod = "GET", response = ResponseBean.class)
|
59
|
|
- public ResponseBean taMateTagGroupList(@ApiParam("页码") @RequestParam(value ="pageNum",defaultValue = "1") Integer pageNum,
|
60
|
|
- @ApiParam("单页数据量") @RequestParam(value ="pageSize",defaultValue = "10") Integer pageSize) throws Exception{
|
|
59
|
+ public ResponseBean taMateTagGroupList(@ApiParam(value = "客户端", allowableValues = "mp,ma") @PathVariable("client") String client,
|
|
60
|
+ @ApiParam("页码") @RequestParam(value ="pageNum",defaultValue = "1") Integer pageNum,
|
|
61
|
+ @ApiParam("单页数据量") @RequestParam(value ="pageSize",defaultValue = "10") Integer pageSize) throws Exception{
|
61
|
62
|
|
62
|
63
|
IPage<TaMateTagGroup> pg = new Page<>(pageNum, pageSize);
|
63
|
64
|
QueryWrapper<TaMateTagGroup> queryWrapper = new QueryWrapper<>();
|