From 75e66aab81ca95c2b72295d3fc7383a3e6455d5b Mon Sep 17 00:00:00 2001 From: kanade Date: Thu, 18 Dec 2025 14:31:55 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20=E6=9B=B4=E6=96=B0=E9=83=A8=E9=97=A8?= =?UTF-8?q?=E5=92=8C=E5=91=98=E5=B7=A5=E6=A8=A1=E5=9D=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 修改了部门模块的代码结构 - 调整了员工模块的相关配置 - 优化了两个模块间的依赖关系 --- ik3cloud/department.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ik3cloud/department.go b/ik3cloud/department.go index ac27d6f..08be3e2 100644 --- a/ik3cloud/department.go +++ b/ik3cloud/department.go @@ -46,11 +46,11 @@ func (d *department) Save(ctx context.Context, args ArgsDepartmentSave) (entity } // Delete @TITLE 删除部门 -func (d *department) Delete(ctx context.Context, numbers []string) (err error) { +func (d *department) Delete(ctx context.Context, args Unique) (err error) { xClient, err := client.GetClient(d) if err != nil { return } var reply int - return xClient.Call(ctx, "Delete", numbers, &reply) + return xClient.Call(ctx, "Delete", args, &reply) }