namespace ZR.Model.Business { /// /// 机房列表 /// [SugarTable("odf_rooms")] public class OdfRooms { /// /// Id /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public int Id { get; set; } /// /// 部门ID /// public long? DeptId { get; set; } /// /// 部门名称 /// public string DeptName { get; set; } /// /// 机房名称 /// public string RoomName { get; set; } /// /// 机房位置 /// public string RoomAddress { get; set; } /// /// 机架数量 /// public int? RacksCount { get; set; } /// /// 备注 /// public string Remarks { get; set; } /// /// 创建时间 /// public DateTime? CreatedAt { get; set; } /// /// 修改时间 /// public DateTime? UpdatedAt { get; set; } } }