| 1234567891011121314151617181920 |
- import { BasicPageParams, BasicFetchResult } from '/@/api/model/baseModel';
- /**
- * @description: Request list interface parameters
- */
- export type PageParams = BasicPageParams;
- export interface ListItem {
- id: number;
- content: string;
- createTime: string;
- image: string;
- orderNum: number;
- title: string;
- url: string;
- }
- /**
- * @description: Request list return value
- */
- export type ListGetResultModel = BasicFetchResult<ListItem>;
|