You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
454 B
21 lines
454 B
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>;
|