using JNPF.Common.Contracts; using SqlSugar; namespace JNPF.Extend.Entitys; /// /// 知识文档 /// 版 本:V3.2 /// 版 权:引迈信息技术有限公司(https://www.jnpfsoft.com) /// 作 者:JNPF开发平台组 /// 日 期:2021-06-01. /// [SugarTable("EXT_DOCUMENT")] public class DocumentEntity : CLDEntityBase { /// /// 文档父级. /// [SugarColumn(ColumnName = "F_PARENTID")] public string? ParentId { get; set; } /// /// 文档分类:【0-文件夹、1-文件】. /// [SugarColumn(ColumnName = "F_TYPE")] public int? Type { get; set; } /// /// 文件名称. /// [SugarColumn(ColumnName = "F_FULLNAME")] public string? FullName { get; set; } /// /// 文件路径. /// [SugarColumn(ColumnName = "F_FILEPATH")] public string? FilePath { get; set; } /// /// 文件大小. /// [SugarColumn(ColumnName = "F_FILESIZE")] public string? FileSize { get; set; } /// /// 文件后缀. /// [SugarColumn(ColumnName = "F_FILEEXTENSION")] public string? FileExtension { get; set; } /// /// 阅读数量. /// [SugarColumn(ColumnName = "F_READCCOUNT")] public int? ReadcCount { get; set; } /// /// 是否共享. /// [SugarColumn(ColumnName = "F_ISSHARE")] public int? IsShare { get; set; } /// /// 共享时间. /// [SugarColumn(ColumnName = "F_SHARETIME")] public DateTime? ShareTime { get; set; } /// /// 描述. /// [SugarColumn(ColumnName = "F_DESCRIPTION")] public string? Description { get; set; } /// /// 排序码. /// [SugarColumn(ColumnName = "F_SORTCODE")] public long? SortCode { get; set; } }