|
@@ -52,6 +52,14 @@ public class MpTagController {
|
|
|
return success(true);
|
|
|
}
|
|
|
|
|
|
+ @GetMapping("/get")
|
|
|
+ @Operation(summary = "获取公众号标签详情")
|
|
|
+ @PreAuthorize("@ss.hasPermission('mp:tag:query')")
|
|
|
+ public CommonResult<MpTagDO> get(@RequestParam("id") Long id) {
|
|
|
+ MpTagDO mpTagDO = mpTagService.get(id);
|
|
|
+ return success(mpTagDO);
|
|
|
+ }
|
|
|
+
|
|
|
@GetMapping("/page")
|
|
|
@Operation(summary = "获取公众号标签分页")
|
|
|
@PreAuthorize("@ss.hasPermission('mp:tag:query')")
|