| | |
| | | * @author ruoyi |
| | | * @date 2023-06-06 |
| | | */ |
| | | @Api("标签") |
| | | @Api(description = "标签") |
| | | @RestController |
| | | @RequestMapping("/base/tag") |
| | | public class BaseTagController extends BaseController { |
| | |
| | | */ |
| | | @ApiOperation("查询标签列表") |
| | | @PreAuthorize("@ss.hasPermi('system:tag:list')") |
| | | @GetMapping("/list") |
| | | @PostMapping("/list") |
| | | public TableDataInfo list(BaseTag baseTag) { |
| | | startPage(); |
| | | List<BaseTag> list = baseTagService.selectBaseTagList(baseTag); |
| | |
| | | public AjaxResult remove(@PathVariable Long[] tagids) { |
| | | return toAjax(baseTagService.deleteBaseTagByTagids(tagids)); |
| | | } |
| | | |
| | | |
| | | } |