Blame view

src/api/demo/model/optionsModel.ts 312 Bytes
1
2
3
import { BasicFetchResult } from '/@/api/model/baseModel';

export interface DemoOptionsItem {
4
5
  name: string;
  id: string;
6
7
}
8
9
10
11
export interface selectParams {
  id: number | string;
}
12
13
14
/**
 * @description: Request list return value
 */
15
export type DemoOptionsGetResultModel = BasicFetchResult<DemoOptionsItem>;