namespace ZR.Model.System.Dto { /// /// 文件存储输入对象 /// public class SysFileDto { public long Id { get; set; } /// /// 文件原名 /// public string RealName { get; set; } /// /// 文件类型 /// public string FileType { get; set; } /// /// 存储文件名 /// public string FileName { get; set; } /// /// 文件存储地址 eg:/uploads/20220202 /// public string FileUrl { get; set; } /// /// 仓库位置 eg:/uploads /// public string StorePath { get; set; } /// /// 文件大小 /// public string FileSize { get; set; } /// /// 文件扩展名 /// public string FileExt { get; set; } /// /// 创建人 /// public string Create_by { get; set; } /// /// 上传时间 /// public DateTime? Create_time { get; set; } /// /// 存储类型 /// public int? StoreType { get; set; } /// /// 目录 /// public int CategoryId { get; set; } /// /// 访问路径 /// public string AccessUrl { get; set; } public string ClassifyType { get; set; } public SysFileDto() { } public SysFileDto(string originFileName, string fileName, string ext, string fileSize, string storePath, string accessUrl, string create_by) { StorePath = storePath; RealName = originFileName; FileName = fileName; FileExt = ext; FileSize = fileSize; AccessUrl = accessUrl; Create_by = create_by; Create_time = DateTime.Now; } } public class SysFileQueryDto : PagerInfo { /// /// 分类 /// public string ClassifyType { get; set; } public DateTime? BeginCreate_time { get; set; } public DateTime? EndCreate_time { get; set; } public int? StoreType { get; set; } public long? FileId { get; set; } public int? CategoryId { get; set; } } }