标签模板 获取分组标签模板列表 api方法名称修正

This commit is contained in:
gaoqr
2026-08-10 16:52:04 +08:00
parent 3ac483a236
commit 35f814bbe6
@@ -60,7 +60,7 @@ public class LabelTemplateController {
@Operation(summary = "获得分组标签模板列表") @Operation(summary = "获得分组标签模板列表")
@PreAuthorize("@ss.hasPermission('system:label-template:query')") @PreAuthorize("@ss.hasPermission('system:label-template:query')")
@OperateLog(enable = false) @OperateLog(enable = false)
public CommonResult<Map<String, List<LabelTemplateRespVO>>> getGroupList() { public CommonResult<Map<String, List<LabelTemplateRespVO>>> getLabelTemplateGroupList() {
return success(labelTemplateService.getGroupList()); return success(labelTemplateService.getGroupList());
} }