Files
jinshen-website/app/models/views/ProductListView.ts
R2m1liA bd894d6f2e feat: 产品列表页排序
- 为ProductType添加sort字段用于排序
- 产品列表页项目按照sort升序排序
2025-11-08 15:34:42 +08:00

31 lines
531 B
TypeScript

/**
* 产品类型视图模型
* 用于产品列表页的section渲染与排序
*/
export interface ProductTypeView {
id: number;
name: string;
sort: number;
}
/**
* 产品列表视图模型
* 用于产品列表(/products)渲染的数据结构
*/
export interface ProductListView {
/** 唯一标识符 **/
id: number;
/** 产品名称 **/
name: string;
/** 产品简介 **/
summary: string;
/** 产品类型 **/
product_type: ProductTypeView;
/** 产品封面(图片的id) **/
cover: string;
}