初始版本提交

This commit is contained in:
yaoyn
2024-02-05 09:15:37 +08:00
parent b52d4414be
commit 445292105f
1848 changed files with 236859 additions and 75 deletions

View File

@ -0,0 +1,23 @@
export interface DepartmentListModel {
id: string; //id
name: string; //名称
code: string; //编码
dingtalkDeptId: string; //钉钉组织Id
}
export interface UserListModel {
id: string; //id
name: string; //姓名
userName: string; //账号
mobile: string; //手机
dingtalkUserId: string; //钉钉用户ID
departmentName: string; //组织
gender: number; //性别
}
export interface ConfigParamsModel {
id: string; //id
dingAppKey: string; //DingAppKey
dingAppSecret: string; //dingAppSecret
dingAgentId: string; //dingAgentId
}