Merge branch 'dev_373'

This commit is contained in:
不做码农
2021-12-17 06:51:08 +08:00
19 changed files with 702 additions and 147 deletions

View File

@@ -4,7 +4,26 @@ using System.Text;
namespace ZR.Model.System.Dto
{
/// <summary>
/// 文件存储输入对象
/// </summary>
public class SysFileDto
{
public int Id { get; set; }
public string FileName { get; set; }
public string FileUrl { get; set; }
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 string AccessUrl { get; set; }
}
public class SysFileQueryDto : PagerInfo
{
public DateTime? BeginCreate_time { get; set; }
public DateTime? EndCreate_time { get; set; }
public int? StoreType { get; set; }
}
}