feat(ik3cloud): 实现部门与员工的增删改查功能

- 添加部门新增、编辑、删除接口及逻辑实现
- 添加员工新增、编辑、启用、禁用、删除接口及逻辑实现
- 更新配置文件支持组织ID配置
- 初始化金蝶客户端连接配置
- 优化部门与员工数据查询结构
- 增加提交、审核、反审等业务流程处理
- 完善错误处理与日志记录机制
This commit is contained in:
2025-11-20 15:37:45 +08:00
parent 9968887665
commit b70ca388cf
8 changed files with 508 additions and 21 deletions

View File

@@ -8,4 +8,5 @@ type Ik3cloud struct {
AppSecret string `ini:"appSecret"` // 应用秘钥
LanguageId string `ini:"languageId"` // 语言ID
OrganizationNumber string `ini:"organizationNumber"` // 组织编码
OrganizationId int64 `ini:"organizationId"` // 组织ID
}