mirror of
https://github.com/vbenjs/vue-vben-admin.git
synced 2025-08-26 16:46:19 +08:00
21 lines
454 B
TypeScript
21 lines
454 B
TypeScript
import { BasicPageParams, BasicFetchResult } from '/@/api/model/baseModel';
|
|
/**
|
|
* @description: Request list interface parameters
|
|
*/
|
|
export type DemoParams = BasicPageParams;
|
|
|
|
export interface DemoListItem {
|
|
id: string;
|
|
beginTime: string;
|
|
endTime: string;
|
|
address: string;
|
|
name: string;
|
|
no: number;
|
|
status: number;
|
|
}
|
|
|
|
/**
|
|
* @description: Request list return value
|
|
*/
|
|
export type DemoListGetResultModel = BasicFetchResult<DemoListItem>;
|