沙钢智慧能源系统前端代码
houzhongjian
2024-10-31 8e4ab7acddbdb84fd755acf7e75cf471f50cba60
提交 | 用户 | 时间
314507 1 export type UserLoginVO = {
H 2   username: string
3   password: string
4   socialType?: string
5   socialCode?: string
6   socialState?: string
7 }
8
8e4ab7 9 export type Oauth2TokenVO = {
H 10   clientId: string
11   clientSecret: string
12   grantType: string
13   username: string
14   password: string
15   scope: string
16 }
17
314507 18 export type TokenType = {
H 19   id: number // 编号
20   accessToken: string // 访问令牌
21   refreshToken: string // 刷新令牌
22   userId: number // 用户编号
23   userType: number //用户类型
24   clientId: string //客户端编号
25   expiresTime: number //过期时间
26 }
27
28 export type UserVO = {
29   id: number
30   username: string
31   nickname: string
32   deptId: number
33   email: string
34   mobile: string
35   sex: number
36   avatar: string
37   loginIp: string
38   loginDate: string
39 }