- export interface PopupResponse {
- total: number;
- list: PopupItem[];
- }
- export interface PopupItem {
- id: number;
- positionID: number;
- subject: string;
- content: string | null;
- link: string | null;
- startAt: string | null;
- endAt: string | null;
- order: number;
- isActive: boolean;
- }
|