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

26 lines
443 B
TypeScript
Raw Normal View History

2024-08-20 12:11:31 +00:00
export interface IUser {
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[],
}
export interface IUserGroup {
id?: number,
name?: string,
remark?: string,
}