初始化

This commit is contained in:
2025-11-20 16:20:04 +08:00
commit 4230fa4d27
777 changed files with 232488 additions and 0 deletions

View File

@@ -0,0 +1,58 @@
using System;
using System.Collections.Generic;
namespace DAL.PGModels;
public partial class 1085Rooms1
{
/// <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 long? JudgTime { get; set; }
/// <summary>
/// 状态类型
/// </summary>
public string? StateType { get; set; }
/// <summary>
/// 判断开始时间
/// </summary>
public long? StartTime { get; set; }
/// <summary>
/// 判断停止时间
/// </summary>
public long? StopTime { get; set; }
public int? StartId { get; set; }
public int? StopId { get; set; }
/// <summary>
/// 判断数量
/// </summary>
public int? JudgCoun { get; set; }
/// <summary>
/// 回路地址
/// </summary>
public string? LoopAddr { get; set; }
public string? JudgTimeStr { get; set; }
}