docs: 为ProductTypeView添加注释

This commit is contained in:
2025-11-08 15:42:40 +08:00
parent a34cfaff6f
commit 308a080ea4

View File

@ -3,8 +3,13 @@
* 用于产品列表页的section渲染与排序 * 用于产品列表页的section渲染与排序
*/ */
export interface ProductTypeView { export interface ProductTypeView {
/** 唯一标识符 **/
id: number; id: number;
/** 类型名 **/
name: string; name: string;
/** 排序字段 **/
sort: number; sort: number;
} }