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

54 lines
1.1 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;
using System.Collections.Generic;
namespace DAL.PGModels;
public partial class 1085Log
{
/// <summary>
/// ID
/// </summary>
public int Id { get; set; }
/// <summary>
/// 房号
/// </summary>
public string? Room { get; set; }
/// <summary>
/// 回路名称(离在线标记为“离线”,“在线”)
/// </summary>
public string? DeviceName { get; set; }
/// <summary>
/// 状态离在线标记1为在线2为离线
/// </summary>
public short? Status { get; set; }
/// <summary>
/// 回路地址
/// </summary>
public string? Address { get; set; }
/// <summary>
/// 时间戳
/// </summary>
public DateOnly? TimeStamp { get; set; }
/// <summary>
/// 是否为错误记录
/// </summary>
public BitArray? IsError { get; set; }
/// <summary>
/// 错误标号
/// </summary>
public string? ErrorCode { get; set; }
/// <summary>
/// 处理标号
/// </summary>
public long? ExecuteCode { get; set; }
}