using JNPF.DependencyInjection; using Microsoft.AspNetCore.Http; namespace JNPF.Extend.Entitys.Dto.Document; [SuppressSniffer] public class DocumentUploaderInput { /// /// 上级文件id. /// public string? parentId { get; set; } /// /// 上级文件id. /// public IFormFile? file { get; set; } }