index.ts
766 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
export interface JwtModel {
  userId: string
  username: string
  tenantCode: string
  tenantName: string
  exp: number
  role: string[]
}
/**
 * @description: Login interface return value
 */
export interface LoginResultModel {
  token: string
  refreshToken: string
}
export interface RefreshTokenParams {
  refreshToken: string
}
export interface DictItem {
  id: string
  createTime: string
  updateTime: string
  dictId: string
  itemText: string
  itemValue: string
  description: string
  sort: number
  status: number
  sysDict: SysDict
}
export interface SysDict {
  dictName: string
  dictCode: string
}
export interface UploadFileResponseType {
  fileName: string
  fileDownloadUri: string
  fileType: string
  size: number
  fileStaticUri: string
}