2023-12-01 21:57:59 +08:00

37 lines
523 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* 文件类
*/
export interface File {
/**
* 下载数
*/
downloadCount: number;
/**
* 文件hashsha512
*/
hash: string;
/**
* 文件id
*/
id: number;
/**
* 文件名
*/
name: string;
/**
* 文件大小(字节为单位)
*/
size: number;
/**
* 文件类型
*/
type: string;
/**
* 上传时间
*/
uploadTime: string;
/**
* 上传者名称
*/
uploaderName: string;
}