using Mapster; namespace Model { /// /// 项目 files_for_all /// [SugarTable("files_for_all", "项目")] [Tenant("0")] public class FilesForAll { /// /// 文件ID /// [SugarColumn(ColumnDescription = "", IsPrimaryKey = true, IsIdentity = true, ColumnName = "file_id")] public int fileId { get; set; } /// /// 项目ID /// [SugarColumn(ColumnDescription = "", ColumnName = "project_id")] public int projectId { get; set; } /// /// 文件名 /// [SugarColumn(ColumnDescription = "", Length = 200, ColumnName = "file_name")] public string? fileName { get; set; } /// /// 下载路径 /// [SugarColumn(ColumnDescription = "", Length = 200, ColumnName = "download_path")] public string? downloadPath { get; set; } /// /// 本地路径 /// [SugarColumn(ColumnDescription = "", Length = 200, ColumnName = "local_path")] public string? localPath { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnDescription = "", ColumnName = "create_time")] public DateTime? createTime { get; set; } /// /// 文件类型 /// [SugarColumn(ColumnDescription = "", Length = 20, ColumnName = "file_type")] public string? fileType { get; set; } /// /// 父文件ID /// [SugarColumn(ColumnDescription = "", ColumnName = "parent_file_id")] public int parentFileId { get; set; } /// /// 版本号 /// [SugarColumn(ColumnDescription = "", ColumnName = "version_no")] public int versionNo { get; set; } } }