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; }
///
/// 备 注:原文件名
/// 默认值:
///
public string? FileName { get; set; }
///
/// 备 注:文件所在路径
/// 默认值:
///
public string? FilePath { get; set; }
///
/// 备 注:文件类型
/// 默认值:
///
public string? FileType { get; set; }
///
/// 备 注:上传时间
/// 默认值:
///
public DateTime? Addtime { get; set; }
}
}