using SqlSugar; using System.ComponentModel.DataAnnotations; namespace Wood.Entity.SystemManage { /// /// 附件信息 /// [SugarTable("SysFile", "附件信息")] [SugarIndex("sysfile_packageCode_index",nameof(PackageCode),OrderByType.Asc)] public class FileEntity:EntityBase { /// /// 打包Guid /// [SugarColumn(ColumnDescription = "打包Guid", Length = 32,IsNullable =true)] [MaxLength(32)] public string? PackageCode { get; set; } /// /// 提供者 /// [SugarColumn(ColumnDescription = "提供者", Length = 128, IsNullable = true)] [MaxLength(128)] public string? Provider { get; set; } /// /// 仓储名称 /// [SugarColumn(ColumnDescription = "仓储名称", Length = 128, IsNullable = true)] [MaxLength(128)] public string? BucketName { get; set; } /// /// 文件名称(上传时名称) /// 文件名称 [SugarColumn(ColumnDescription = "文件名称", Length = 128)] [MaxLength(128)] public string FileName { get; set; } = ""; /// /// 文件后缀 /// [SugarColumn(ColumnDescription = "文件后缀", Length = 16, IsNullable = true)] [MaxLength(16)] public string? Suffix { get; set; } /// /// 存储路径 /// [SugarColumn(ColumnDescription = "存储路径", Length = 128)] [MaxLength(128)] public string FilePath { get; set; } = ""; /// /// 文件大小KB /// [SugarColumn(ColumnDescription = "文件大小KB", Length = 16)] [MaxLength(16)] public float SizeKb { get; set; } = 0; /// /// 文件大小信息-计算后的 /// [SugarColumn(ColumnDescription = "文件大小信息", Length = 64, IsNullable = true)] [MaxLength(64)] public string? SizeInfo { get; set; } } }