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