Files
Web_BLVLOG_Server_Mvc_Prod/DAL/PGModels/原始日志表设计备份1085Room.cs
2025-11-20 16:20:37 +08:00

55 lines
1.0 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using System.Collections.Generic;
namespace DAL.PGModels;
public partial class 1085Room
{
/// <summary>
/// ID
/// </summary>
public long Id { get; set; }
/// <summary>
/// 房号
/// </summary>
public string? Room { get; set; }
/// <summary>
/// 主机在线状态
/// </summary>
public short? RcuStatus { get; set; }
/// <summary>
/// 所属日期
/// </summary>
public DateOnly? Date { get; set; }
/// <summary>
/// 错误001次数下同
/// </summary>
public int? E001 { get; set; }
/// <summary>
/// 错误002次数
/// </summary>
public int? E002 { get; set; }
public int? E003 { get; set; }
public int? E004 { get; set; }
public int? E005 { get; set; }
public int? E006 { get; set; }
public int? E007 { get; set; }
public int? E008 { get; set; }
/// <summary>
/// 日志总记录条数
/// </summary>
public long? LogsLength { get; set; }
}