21 lines
359 B
TypeScript
21 lines
359 B
TypeScript
/**
|
|
* 解决方案列表模型
|
|
* 用于解决方案列表(/solutions)渲染的数据结构
|
|
*/
|
|
export interface SolutionListView {
|
|
/** 唯一标识符 **/
|
|
id: number;
|
|
|
|
/** 标题 **/
|
|
title: string;
|
|
|
|
/** 摘要 **/
|
|
summary: string;
|
|
|
|
/** 解决方案类型 **/
|
|
solution_type: string;
|
|
|
|
/** 解决方案封面(图片id) **/
|
|
cover: string;
|
|
}
|