初始化
This commit is contained in:
38
DAL/New_Models/TbHostModalEnergy.cs
Normal file
38
DAL/New_Models/TbHostModalEnergy.cs
Normal file
@@ -0,0 +1,38 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user