Quanxue.Zhanghao.Daochu/LearningOfficer.OA.Common/Dtos/SysFile/SysFileViewDto.cs

41 lines
872 B
C#

using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LearningOfficer.OA.Common.Dtos.SysFile
{
public class SysFileViewDto
{
public long Id { get; set; }
/// <summary>
/// 备 注:原文件名
/// 默认值:
///</summary>
public string? FileName { get; set; }
/// <summary>
/// 备 注:文件所在路径
/// 默认值:
///</summary>
public string? FilePath { get; set; }
/// <summary>
/// 备 注:文件类型
/// 默认值:
///</summary>
public string? FileType { get; set; }
/// <summary>
/// 备 注:上传时间
/// 默认值:
///</summary>
public DateTime? Addtime { get; set; }
}
}