using JNPF.Common.Contracts; using SqlSugar; namespace JNPF.Systems.Entitys.System; /// /// 数据备份 /// 版 本:V3.2 /// 版 权:拓通智联科技有限公司(http://www.tuotong-tech.com) /// 日 期:2021-06-01. /// [SugarTable("BASE_DBBACKUP")] public class DbBackupEntity : CLDEntityBase { /// /// 备份库名. /// [SugarColumn(ColumnName = "F_BACKUPDBNAME")] public string BackupDbName { get; set; } /// /// 备份时间. /// [SugarColumn(ColumnName = "F_BACKUPTIME")] public DateTime? BackupTime { get; set; } /// /// 文件名称. /// [SugarColumn(ColumnName = "F_FILENAME")] public string FileName { get; set; } /// /// 文件大小. /// [SugarColumn(ColumnName = "F_FILESIZE")] public string FileSize { get; set; } /// /// 文件路径. /// [SugarColumn(ColumnName = "F_FILEPATH")] public string FilePath { get; set; } /// /// 描述. /// [SugarColumn(ColumnName = "F_DESCRIPTION")] public string Description { get; set; } /// /// 排序码. /// [SugarColumn(ColumnName = "F_SORTCODE")] public long? SortCode { get; set; } }