- 添加部门新增、编辑、删除接口及逻辑实现 - 添加员工新增、编辑、启用、禁用、删除接口及逻辑实现 - 更新配置文件支持组织ID配置 - 初始化金蝶客户端连接配置 - 优化部门与员工数据查询结构 - 增加提交、审核、反审等业务流程处理 - 完善错误处理与日志记录机制
13 lines
582 B
Go
13 lines
582 B
Go
package config
|
|
|
|
type Ik3cloud struct {
|
|
Host string `ini:"host"` // 接口地址
|
|
AccountId string `ini:"accountId"` // 账套ID
|
|
Username string `ini:"username"` // 用户名
|
|
AppId string `ini:"appId"` // 应用ID
|
|
AppSecret string `ini:"appSecret"` // 应用秘钥
|
|
LanguageId string `ini:"languageId"` // 语言ID
|
|
OrganizationNumber string `ini:"organizationNumber"` // 组织编码
|
|
OrganizationId int64 `ini:"organizationId"` // 组织ID
|
|
}
|