using JNPF.DependencyInjection;
namespace JNPF.Extend.Entitys.Dto.Document;
///
/// 获取知识管理列表(全部文档).
///
[SuppressSniffer]
public class DocumentListOutput
{
///
/// 创建日期.
///
public DateTime? creatorTime { get; set; }
///
/// 是否分享.
///
public int? isShare { get; set; }
///
/// 类型(0-文件夹,1-文件).
///
public int? type { get; set; }
///
/// 大小.
///
public string? fileSize { get; set; }
///
/// 名称.
///
public string? fullName { get; set; }
///
/// 主键id.
///
public string? id { get; set; }
///
/// 后缀名.
///
public string? fileExtension { get; set; }
///
/// 父级Id.
///
public string? parentId { get; set; }
}