news.ts 504 B

123456789101112131415161718192021222324252627282930313233
  1. export interface Guide {
  2. id: number;
  3. location: string;
  4. refIds: string;
  5. subType: string;
  6. type: string;
  7. description: string;
  8. }
  9. export interface NewsQueryDTO {
  10. ids?: string;
  11. pageNum?: number;
  12. pageSize?: number;
  13. tag?: string;
  14. type?: string;
  15. top?: boolean;
  16. }
  17. export interface NewsType {
  18. label: string;
  19. value: string;
  20. }
  21. export interface NewsItem {
  22. id: number;
  23. content: string;
  24. clicked: number;
  25. description: string;
  26. title: string;
  27. type: string;
  28. sendDate: string;
  29. }