nsn-entity
Version:
NSN实体组件
28 lines (20 loc) • 465 B
TypeScript
import { NEntity } from '../core';
/** 系统-文件 */
export interface Files extends NEntity {
/** 文件名称 */
name: string;
/** 文件相对路径 */
relativePath: string;
/** 文件后缀扩展名 */
exts: string;
/** 文件大小(单位B) */
size: number;
/** 文件内容类型 */
contentType: string;
/** 文件分类 */
type: string;
/** 引用主键 */
targetId: string;
/** 引用类型 */
targetType: string;
}