|
@@ -54,10 +54,10 @@ public class TaMetaImageTagController extends BaseController {
|
54
|
54
|
@ApiOperation(value="列表", notes = "列表", httpMethod = "GET", response = ResponseBean.class)
|
55
|
55
|
public ResponseBean taMetaImageTagList(@ApiParam("页码") @RequestParam(value ="pageNum",defaultValue = "1") Integer pageNum,
|
56
|
56
|
@ApiParam("单页数据量") @RequestParam(value ="pageSize",defaultValue = "10") Integer pageSize,
|
57
|
|
- @ApiParam("标签ID") @RequestParam(value ="tagId") String tagId) throws Exception{
|
|
57
|
+ @ApiParam("标签ID") @RequestParam(value ="tagIds") String tagIds) throws Exception{
|
58
|
58
|
|
59
|
59
|
IPage<TaMetaImageTag> pg = new Page<>(pageNum, pageSize);
|
60
|
|
- IPage<TaMetaImageTag> result = iTaMetaImageTagService.pagedBy(pg, tagId);
|
|
60
|
+ IPage<TaMetaImageTag> result = iTaMetaImageTagService.pagedBy(pg, tagIds);
|
61
|
61
|
return ResponseBean.success(result);
|
62
|
62
|
}
|
63
|
63
|
|