/** * 常见问题视图模型 * 用于产品页常见问题渲染的数据结构 */ export interface ProductQuestionView { /** 唯一标识符 **/ id: number; /** 问题标题 **/ title: string; /** 问题内容 **/ content: string; }