Ben Lin
2024-03-24 b72cc34ab2fef7d6bcaca3e2b11231713d622fce
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
import { BasicPageParams, BasicFetchResult } from '/@/api/model/baseModel';
 
export type AccountParams = BasicPageParams & {
  account?: string;
  nickname?: string;
};
 
export type RoleParams = {
  roleName?: string;
  status?: string;
};
 
export type RolePageParams = BasicPageParams & RoleParams;
 
export type DeptParams = {
  deptName?: string;
  status?: string;
};
 
export type MenuParams = {
  menuName?: string;
  status?: string;
};
 
export interface AccountListItem {
  id: string;
  account: string;
  email: string;
  nickname: string;
  role: number;
  createTime: string;
  remark: string;
  status: number;
}
 
export interface DeptListItem {
  id: string;
  orderNo: string;
  createTime: string;
  remark: string;
  status: number;
}
 
export interface MenuListItem {
  id: string;
  orderNo: string;
  createTime: string;
  status: number;
  icon: string;
  component: string;
  permission: string;
}
 
export interface RoleListItem {
  id: string;
  roleName: string;
  roleValue: string;
  status: number;
  orderNo: string;
  createTime: string;
}
 
/**
 * @description: Request list return value
 */
export type AccountListGetResultModel = BasicFetchResult<AccountListItem>;
 
export type DeptListGetResultModel = BasicFetchResult<DeptListItem>;
 
export type MenuListGetResultModel = BasicFetchResult<MenuListItem>;
 
export type RolePageListGetResultModel = BasicFetchResult<RoleListItem>;
 
export type RoleListGetResultModel = RoleListItem[];