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