12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- using Mapster;
- namespace Model
- {
-
-
-
- [SugarTable("file_update_info", "资源文件更新信息")]
- [Tenant("0")]
- public class FileUpdateInfo
- {
-
-
-
- [SugarColumn(ColumnDescription = "更新版本", ColumnName = "version_num")]
- public int versionNum { get; set; }
-
-
-
- [SugarColumn(ColumnDescription = "路径", Length = 200, ColumnName = "path")]
- public string path { get; set; }
-
-
-
- [SugarColumn(ColumnDescription = "文件名", Length = 50, ColumnName = "file_name")]
- public string fileName { get; set; }
-
-
-
- [SugarColumn(ColumnDescription = "ID", IsPrimaryKey = true, IsIdentity = true, ColumnName = "id")]
- public int id { get; set; }
-
-
-
- [SugarColumn(ColumnDescription = "状态", ColumnName = "status")]
- public int status { get; set; }
-
-
-
- [SugarColumn(ColumnDescription = "排序", ColumnName = "sort")]
- public int sort { get; set; }
-
-
-
- [SugarColumn(ColumnDescription = "版本号", ColumnName = "version")]
- public int version { get; set; }
-
-
-
- [SugarColumn(ColumnDescription = "创建时间", ColumnName = "create_date")]
- public DateTime? createDate { get; set; }
-
-
-
- [SugarColumn(ColumnDescription = "更新时间", ColumnName = "update_date")]
- public DateTime? updateDate { get; set; }
-
-
-
- [SugarColumn(ColumnDescription = "分类", Length = 50, ColumnName = "kind")]
- public string kind { get; set; }
- }
- }
|