using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace PictureFilesApi.Models { public class UploadFile { /// /// 主键 /// public string Id { get; set; } /// /// 文件名称 /// public string FileName { get; set; } /// /// 文件路径 /// public string FilePath { get; set; } /// /// 描述 /// public string Description { get; set; } /// /// 文件类型 /// public string FileType { get; set; } /// /// 文件大小 /// public int? FileSize { get; set; } /// /// 扩展名称 /// public string Extension { get; set; } /// /// 是否可用 /// public bool Enable { get; set; } /// /// 排序 /// public int SortCode { get; set; } /// /// 删除标识 /// public bool DeleteMark { get; set; } /// /// 上传人 /// public System.Guid? CreateUserId { get; set; } /// /// 上传人姓名 /// public string CreateUserName { get; set; } /// /// 上传时间 /// public System.DateTime CreateTime { get; set; } /// /// 缩略图 /// public string Thumbnail { get; set; } /// /// 所属应用 /// public string BelongApp { get; set; } /// /// 所属应用ID /// public string BelongAppId { get; set; } public string OriginalPath { get; set; } } }