Files
jinshen-website/app/models/views/ProductDocumentView.ts
R2m1liA 4e7131b291
All checks were successful
deploy to server / build-and-deploy (push) Successful in 5m4s
feat: 添加download路由用于展示文档信息
- 添加/download/documentID路由用于文档下载
- server端添加文档元数据获取与下载API
- 将app中的types移至shared,与server共享
2025-10-27 17:16:51 +08:00

24 lines
355 B
TypeScript

/**
* 文档视图模型
* 用于文档列表渲染的数据结构
*/
export interface ProductDocumentView {
/** 唯一标识符 **/
id: number;
/** 文件UUID **/
fileId: string;
/** 文件名 **/
filename: string;
/** 文档标题 **/
title: string;
/** 文档大小 **/
size: number;
/** 文档链接 **/
url: string;
}