using System;
using System.Collections.Generic;
namespace DAL.New_Models;
public partial class TbHostModalEnergy
{
///
/// 主机ID
///
public int HostId { get; set; }
///
/// 房号
///
public string RoomNumber { get; set; } = null!;
public int? RoomTypeId { get; set; }
///
/// 回路ID
///
public int RoomTypeModalId { get; set; }
public string? ModalAddress { get; set; }
public string Outlet { get; set; } = null!;
///
/// 时间
///
public DateOnly Date { get; set; }
///
/// 消耗能量
///
public double Energy { get; set; }
}