Files
tnb.server/extend/Tnb.Extend.Entitys/Dto/Document/DocumentListOutput.cs
2023-05-31 10:19:05 +08:00

66 lines
1.3 KiB
C#
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.
using JNPF.DependencyInjection;
namespace JNPF.Extend.Entitys.Dto.Document;
/// <summary>
/// 获取知识管理列表(全部文档).
/// </summary>
[SuppressSniffer]
public class DocumentListOutput
{
/// <summary>
/// 创建日期.
/// </summary>
public DateTime? creatorTime { get; set; }
/// <summary>
/// 是否分享.
/// </summary>
public int? isShare { get; set; }
/// <summary>
/// 类型(0-文件夹1-文件).
/// </summary>
public int? type { get; set; }
/// <summary>
/// 大小.
/// </summary>
public string? fileSize { get; set; }
/// <summary>
/// 名称.
/// </summary>
public string? fullName { get; set; }
/// <summary>
/// 主键id.
/// </summary>
public string? id { get; set; }
/// <summary>
/// 后缀名.
/// </summary>
public string? fileExtension { get; set; }
/// <summary>
/// 父级Id.
/// </summary>
public string? parentId { get; set; }
/// <summary>
/// 文档下载地址.
/// </summary>
public string? uploaderUrl { get; set; }
/// <summary>
/// 文件路径.
/// </summary>
public string? filePath { get; set; }
/// <summary>
/// 是否支持预览.
/// </summary>
public string? isPreview { get; set; }
}