16 lines
316 B
TypeScript
16 lines
316 B
TypeScript
import { BasicFetchResult } from '/@/api/model/baseModel';
|
|
|
|
export interface DemoOptionsItem {
|
|
label: string;
|
|
value: string;
|
|
}
|
|
|
|
export interface selectParams {
|
|
id: number | string;
|
|
}
|
|
|
|
/**
|
|
* @description: Request list return value
|
|
*/
|
|
export type DemoOptionsGetResultModel = BasicFetchResult<DemoOptionsItem>;
|