Feature: 产品常见问题 & 相关文档下载

This commit is contained in:
2025-08-27 13:17:55 +08:00
parent 2856f2c5a1
commit 91584096ba
6 changed files with 114 additions and 14 deletions

View File

@ -12,6 +12,7 @@ export interface StrapiMedia {
url: string;
ext: string;
name: string;
size: number;
alternativeText: string;
caption: string;
}

View File

@ -1,4 +1,5 @@
export * from './common';
export * from './production';
export * from './singleTypes';
export * from './solution';
export * from './solution';
export * from './question';

View File

@ -22,6 +22,7 @@ export interface Production extends StrapiEntity {
production_images: StrapiImage[];
production_details: string;
production_specs: ProductionSpecGroup[];
questions: Question[];
documents: StrapiMedia[];
show_in_production_list: boolean;
}

View File

@ -0,0 +1,4 @@
export interface Question extends StrapiEntity {
title: string;
content: string;
}