mirror of
https://github.com/jeecgboot/JeecgBoot.git
synced 2026-02-01 08:05: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>;
|