houzhongjian
2024-08-08 820397e43a0b64d35c6d31d2a55475061438593b
提交 | 用户 | 时间
820397 1 export type UserLoginVO = {
H 2   username: string
3   password: string
4   captchaVerification: string
5   socialType?: string
6   socialCode?: string
7   socialState?: string
8 }
9
10 export type TokenType = {
11   id: number // 编号
12   accessToken: string // 访问令牌
13   refreshToken: string // 刷新令牌
14   userId: number // 用户编号
15   userType: number //用户类型
16   clientId: string //客户端编号
17   expiresTime: number //过期时间
18 }
19
20 export type UserVO = {
21   id: number
22   username: string
23   nickname: string
24   deptId: number
25   email: string
26   mobile: string
27   sex: number
28   avatar: string
29   loginIp: string
30   loginDate: string
31 }