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; }