123456789101112131415161718192021222324252627282930313233 |
- import { BasicPageParams, BasicFetchResult } from '/@/api/model/baseModel';
- /**
- * @description: Request list interface parameters
- */
- export type PageParams = BasicPageParams;
- export interface MemberListItem {
- id: number;
- content: string;
- type: string;
- effectiveTime: string[];
- createTime: string;
- }
- export interface NoticeParams {
- id?: string;
- title: string;
- content: string;
- type: string;
- effectiveTime: string[];
- }
- export interface DelNoticeParams {
- id: string;
- }
- export interface UnreadModel {
- list: any[];
- totalCount: number;
- }
- /**
- * @description: Request list return value
- */
- export type ListGetResultModel = BasicFetchResult<MemberListItem>;
|