popup.ts 286 B

12345678910111213141516
  1. export interface PopupResponse {
  2. total: number;
  3. list: PopupItem[];
  4. }
  5. export interface PopupItem {
  6. id: number;
  7. positionID: number;
  8. subject: string;
  9. content: string | null;
  10. link: string | null;
  11. startAt: string | null;
  12. endAt: string | null;
  13. order: number;
  14. isActive: boolean;
  15. }