新增加文件存储
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user