添加项目文件。
This commit is contained in:
36
extend/Tnb.Extend.Entitys/Dto/Document/DocumentInfoOutput.cs
Normal file
36
extend/Tnb.Extend.Entitys/Dto/Document/DocumentInfoOutput.cs
Normal file
@@ -0,0 +1,36 @@
|
||||
using JNPF.DependencyInjection;
|
||||
|
||||
namespace JNPF.Extend.Entitys.Dto.Document;
|
||||
|
||||
/// <summary>
|
||||
/// 获取文件/文件夹信息.
|
||||
/// </summary>
|
||||
[SuppressSniffer]
|
||||
public class DocumentInfoOutput
|
||||
{
|
||||
/// <summary>
|
||||
/// 父级id.
|
||||
/// </summary>
|
||||
public string? parentId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 文件类型.
|
||||
/// </summary>
|
||||
public int? type { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 主键id.
|
||||
/// </summary>
|
||||
public string? id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 文件名/文件夹名.
|
||||
/// </summary>
|
||||
public string? fullName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 后缀名.
|
||||
/// </summary>
|
||||
public string? fileExtension { get; set; }
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user