Vben
2021-03-01 37669d067c43a3807df848f0caf67cbeab3e1b33
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import { BasicPageParams, BasicFetchResult } from '/@/api/model/baseModel';
 
export type Params = BasicPageParams & {
  account?: string;
  nickname?: string;
};
 
export interface DemoListItem {
  id: string;
  account: string;
  email: string;
  nickname: string;
  role: number;
  updateTime: string;
  remark: string;
}
 
/**
 * @description: Request list return value
 */
export type DemoListGetResultModel = BasicFetchResult<DemoListItem>;