Files
cody-crm/frontend/packages/lib-shared/models/user.ts
wangziqi 72e2110987
Some checks failed
Synchronize to Gitee / repo-sync (push) Has been cancelled
Typos Checking / Spell Check with Typos (push) Has been cancelled
chore: initial commit
2026-06-23 11:56:23 +08:00

34 lines
737 B
TypeScript

import type { MessageCenterItem } from '@lib/shared/models/system/message';
export interface UserInfo {
id: string;
name: string;
email: string;
password: string;
enable: boolean;
createTime: number;
updateTime: number;
language: string;
lastOrganizationId: string;
phone: string;
source: string;
createUser: string;
updateUser: string;
platformInfo: string;
avatar: string;
permissionIds: string[];
organizationIds: string[];
csrfToken: string;
sessionId: string;
roles: string[];
departmentId: string;
departmentName: string;
defaultPwd: boolean;
}
export interface MessageInfo {
read: boolean;
notificationDTOList: MessageCenterItem[];
announcementDTOList: MessageCenterItem[];
}