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