Feature: 产品常见问题 & 相关文档下载
This commit is contained in:
@ -12,6 +12,7 @@ export interface StrapiMedia {
|
||||
url: string;
|
||||
ext: string;
|
||||
name: string;
|
||||
size: number;
|
||||
alternativeText: string;
|
||||
caption: string;
|
||||
}
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
export * from './common';
|
||||
export * from './production';
|
||||
export * from './singleTypes';
|
||||
export * from './solution';
|
||||
export * from './solution';
|
||||
export * from './question';
|
||||
@ -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;
|
||||
}
|
||||
4
app/types/strapi/question.ts
Normal file
4
app/types/strapi/question.ts
Normal file
@ -0,0 +1,4 @@
|
||||
export interface Question extends StrapiEntity {
|
||||
title: string;
|
||||
content: string;
|
||||
}
|
||||
Reference in New Issue
Block a user