using System; using System.Collections.Generic; namespace DAL.New_Models; public partial class TbHostUpdate { public int Id { get; set; } /// /// 文件类型:0/主机固件文件,1/配置数据文件 /// public int FileType { get; set; } /// /// 升级包名称 /// public string FileName { get; set; } = null!; /// /// 路径 /// public string Href { get; set; } = null!; /// /// Md5值 /// public string? Md5 { get; set; } /// /// 文件大小 /// public long? Size { get; set; } /// /// 上传日期 /// public DateTime? UploadTime { get; set; } /// /// 上传人 /// public string? Account { get; set; } public int? HotelId { get; set; } public virtual ICollection TbHostUpdateStatuses { get; set; } = new List(); }