| 123456789101112131415161718192021222324252627282930313233 |
- export interface Guide {
- id: number;
- location: string;
- refIds: string;
- subType: string;
- type: string;
- description: string;
- }
- export interface NewsQueryDTO {
- ids?: string;
- pageNum?: number;
- pageSize?: number;
- tag?: string;
- type?: string;
- top?: boolean;
- }
- export interface NewsType {
- label: string;
- value: string;
- }
- export interface NewsItem {
- id: number;
- content: string;
- clicked: number;
- description: string;
- title: string;
- type: string;
- sendDate: string;
- }
|