|
@@ -51,9 +51,10 @@ public class TaMetaImageTagController extends BaseController {
|
51
|
51
|
* @param pageSize
|
52
|
52
|
* @return
|
53
|
53
|
*/
|
54
|
|
- @RequestMapping(value="/mp/taMetaImageTag",method= RequestMethod.GET)
|
|
54
|
+ @RequestMapping(value="/{client}/taMetaImageTag",method= RequestMethod.GET)
|
55
|
55
|
@ApiOperation(value="列表", notes = "列表", httpMethod = "GET", response = ResponseBean.class)
|
56
|
|
- public ResponseBean taMetaImageTagList(@ApiParam("页码") @RequestParam(value ="pageNum",defaultValue = "1") Integer pageNum,
|
|
56
|
+ public ResponseBean taMetaImageTagList(@ApiParam(value = "客户端", allowableValues = "ma,mp") @RequestParam(value ="client") String client,
|
|
57
|
+ @ApiParam("页码") @RequestParam(value ="pageNum",defaultValue = "1") Integer pageNum,
|
57
|
58
|
@ApiParam("单页数据量") @RequestParam(value ="pageSize",defaultValue = "10") Integer pageSize,
|
58
|
59
|
@ApiParam("标签ID") @RequestParam(value ="tagIds") String tagIds) throws Exception{
|
59
|
60
|
|