From 6bcb0dd30a7bb0895207ec31aca6445941bc6810 Mon Sep 17 00:00:00 2001 From: ziin Date: Fri, 19 Dec 2025 21:09:01 +0800 Subject: [PATCH] =?UTF-8?q?chore(git):=20=E6=9B=B4=E6=96=B0.gitignore?= =?UTF-8?q?=E5=B9=B6=E9=87=8D=E6=9E=84=E6=8E=A7=E5=88=B6=E5=99=A8=E6=96=B9?= =?UTF-8?q?=E6=B3=95=E5=91=BD=E5=90=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 在.gitignore中新增三个文档路径,同时将EmployeeBigBrotherController的createEmployeeBigBrother方法重命名为allocationEmployeeBigBrother,使语义更准确反映“分配”业务含义。 --- .gitignore | 3 +++ .../admin/employeebigbrother/EmployeeBigBrotherController.java | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 3be503e..750bbe7 100644 --- a/.gitignore +++ b/.gitignore @@ -59,3 +59,6 @@ application-my.yaml /.continue/ /script/ /sql/ +/.claude/agents/backend-architect.md +/tkdata-model-server-issues.md +/CLAUDE.md diff --git a/tkdata-model-server/src/main/java/cn/iocoder/yudao/module/tkdata/controller/admin/employeebigbrother/EmployeeBigBrotherController.java b/tkdata-model-server/src/main/java/cn/iocoder/yudao/module/tkdata/controller/admin/employeebigbrother/EmployeeBigBrotherController.java index 24ac112..f5f861c 100644 --- a/tkdata-model-server/src/main/java/cn/iocoder/yudao/module/tkdata/controller/admin/employeebigbrother/EmployeeBigBrotherController.java +++ b/tkdata-model-server/src/main/java/cn/iocoder/yudao/module/tkdata/controller/admin/employeebigbrother/EmployeeBigBrotherController.java @@ -107,7 +107,7 @@ public class EmployeeBigBrotherController { @PostMapping("/allocation") @Operation(summary = "分配大哥给员工") @PreAuthorize("@ss.hasPermission('server:employee-big-brother:allocation')") - public CommonResult createEmployeeBigBrother(@Valid @RequestBody List createReqVO) { + public CommonResult allocationEmployeeBigBrother(@Valid @RequestBody List createReqVO) { return success(employeeBigBrotherService.allocationEmployeeBigBrother(createReqVO)); }