cmc-web/webs/log-web/src/models/user.d.ts

26 lines
423 B
TypeScript
Raw Normal View History

2024-08-20 12:11:31 +00:00
export interface IUser {
2024-08-21 01:17:14 +00:00
id?: number
account: string
name: string
status: string
isManager: boolean
sex: boolean
password: string
email: string
mobile: string
dingtalk: string
wechat: string
company: string
jobNumber: string
tenantId: number
remark: string
departId: number | undefined
departIds: number[]
2024-08-20 12:11:31 +00:00
}
export interface IUserGroup {
2024-08-21 01:17:14 +00:00
id?: number
name?: string
remark?: string
2024-08-20 12:11:31 +00:00
}