namespace Admin.NET.Core.Service; public class FileOutput { /// /// Id /// public long Id { get; set; } /// /// 名称 /// public string Name { get { return this.Id + this.Suffix; } } /// /// URL /// public string Url { get; set; } /// /// 大小 /// public string SizeKb { get; set; } /// /// 后缀 /// public string Suffix { get; set; } /// /// 路径 /// public string FilePath { get; set; } } [SugarTable("sys_file")] [NotTable] public class MapperSysFileOutput { /// /// 雪花Id /// [SugarColumn(ColumnDescription = "Id", IsPrimaryKey = true, IsIdentity = false)] public long Id { get; set; } public string BucketName { get; set; } public string FileName { get; set; } public string Suffix { get; set; } public string FilePath { get; set; } }