初始化
This commit is contained in:
23
DAL/DAL.csproj
Normal file
23
DAL/DAL.csproj
Normal file
@@ -0,0 +1,23 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.17" />
|
||||
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.17">
|
||||
<PrivateAssets>all</PrivateAssets>
|
||||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||||
</PackageReference>
|
||||
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="8.0.17" />
|
||||
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="8.0.17">
|
||||
<PrivateAssets>all</PrivateAssets>
|
||||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||||
</PackageReference>
|
||||
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="8.0.11" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
15
DAL/PGModels/BlockIplog.cs
Normal file
15
DAL/PGModels/BlockIplog.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class BlockIplog
|
||||
{
|
||||
public long Id { get; set; }
|
||||
|
||||
public string? Human { get; set; }
|
||||
|
||||
public DateTime? CreateTime { get; set; }
|
||||
|
||||
public string? BlockContent { get; set; }
|
||||
}
|
||||
32
DAL/PGModels/BlsHotelsList.cs
Normal file
32
DAL/PGModels/BlsHotelsList.cs
Normal file
@@ -0,0 +1,32 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class BlsHotelsList
|
||||
{
|
||||
/// <summary>
|
||||
/// ID
|
||||
/// </summary>
|
||||
public int Id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 酒店编号
|
||||
/// </summary>
|
||||
public string? HotelCode { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 酒店名称
|
||||
/// </summary>
|
||||
public string? HotelName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 创建时间
|
||||
/// </summary>
|
||||
public DateOnly? CreateDate { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 房间数
|
||||
/// </summary>
|
||||
public int? Rooms { get; set; }
|
||||
}
|
||||
41
DAL/PGModels/DevMonitorlog.cs
Normal file
41
DAL/PGModels/DevMonitorlog.cs
Normal file
@@ -0,0 +1,41 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class DevMonitorlog
|
||||
{
|
||||
public long Id { get; set; }
|
||||
|
||||
public int? HotelId { get; set; }
|
||||
|
||||
public string? HotelCode { get; set; }
|
||||
|
||||
public string? HostNumber { get; set; }
|
||||
|
||||
public int? HostId { get; set; }
|
||||
|
||||
public string? RoomNo { get; set; }
|
||||
|
||||
public string? LanIp { get; set; }
|
||||
|
||||
public int? LanPort { get; set; }
|
||||
|
||||
public string? Mac { get; set; }
|
||||
|
||||
public int? WwwPort { get; set; }
|
||||
|
||||
public string? WwwIp { get; set; }
|
||||
|
||||
public string? CommandType { get; set; }
|
||||
|
||||
public string? SendOrReceive { get; set; }
|
||||
|
||||
public string? Data { get; set; }
|
||||
|
||||
public DateTime? CreateTime { get; set; }
|
||||
|
||||
public long? CreateTimeToUnixTime { get; set; }
|
||||
|
||||
public string? AnalysisData { get; set; }
|
||||
}
|
||||
41
DAL/PGModels/DevMonitorlogCopy1.cs
Normal file
41
DAL/PGModels/DevMonitorlogCopy1.cs
Normal file
@@ -0,0 +1,41 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class DevMonitorlogCopy1
|
||||
{
|
||||
public long Id { get; set; }
|
||||
|
||||
public int? HotelId { get; set; }
|
||||
|
||||
public string? HotelCode { get; set; }
|
||||
|
||||
public string? HostNumber { get; set; }
|
||||
|
||||
public int? HostId { get; set; }
|
||||
|
||||
public string? RoomNo { get; set; }
|
||||
|
||||
public string? LanIp { get; set; }
|
||||
|
||||
public int? LanPort { get; set; }
|
||||
|
||||
public string? Mac { get; set; }
|
||||
|
||||
public int? WwwPort { get; set; }
|
||||
|
||||
public string? WwwIp { get; set; }
|
||||
|
||||
public string? CommandType { get; set; }
|
||||
|
||||
public string? SendOrReceive { get; set; }
|
||||
|
||||
public string? Data { get; set; }
|
||||
|
||||
public DateTime? CreateTime { get; set; }
|
||||
|
||||
public long? CreateTimeToUnixTime { get; set; }
|
||||
|
||||
public string? AnalysisData { get; set; }
|
||||
}
|
||||
15
DAL/PGModels/Excelgenerater.cs
Normal file
15
DAL/PGModels/Excelgenerater.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class Excelgenerater
|
||||
{
|
||||
public long Id { get; set; }
|
||||
|
||||
public string? StepInfo { get; set; }
|
||||
|
||||
public DateTime? CreateTime { get; set; }
|
||||
|
||||
public long? CreateTimeUnix { get; set; }
|
||||
}
|
||||
27
DAL/PGModels/IotMonitorlog.cs
Normal file
27
DAL/PGModels/IotMonitorlog.cs
Normal file
@@ -0,0 +1,27 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class IotMonitorlog
|
||||
{
|
||||
public long Id { get; set; }
|
||||
|
||||
public string? RequestId { get; set; }
|
||||
|
||||
public string? TriggerTime { get; set; }
|
||||
|
||||
public double? Step { get; set; }
|
||||
|
||||
public int? HotelId { get; set; }
|
||||
|
||||
public string? HotelName { get; set; }
|
||||
|
||||
public string? HotelCode { get; set; }
|
||||
|
||||
public string? RoomNumber { get; set; }
|
||||
|
||||
public string? CommandDescription { get; set; }
|
||||
|
||||
public string? Platform { get; set; }
|
||||
}
|
||||
32
DAL/PGModels/LogFilterRule.cs
Normal file
32
DAL/PGModels/LogFilterRule.cs
Normal file
@@ -0,0 +1,32 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class LogFilterRule
|
||||
{
|
||||
/// <summary>
|
||||
/// ID
|
||||
/// </summary>
|
||||
public long Id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 错误类型
|
||||
/// </summary>
|
||||
public string? Type { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 时间长度*(s)
|
||||
/// </summary>
|
||||
public int? Time { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 规则次数
|
||||
/// </summary>
|
||||
public int? Rule { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 规则描述
|
||||
/// </summary>
|
||||
public string? Note { get; set; }
|
||||
}
|
||||
1198
DAL/PGModels/PostgresContext.cs
Normal file
1198
DAL/PGModels/PostgresContext.cs
Normal file
File diff suppressed because it is too large
Load Diff
19
DAL/PGModels/Qingao.cs
Normal file
19
DAL/PGModels/Qingao.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class Qingao
|
||||
{
|
||||
public long Id { get; set; }
|
||||
|
||||
public string? RoomNumber { get; set; }
|
||||
|
||||
public string? HotelCode { get; set; }
|
||||
|
||||
public string? TakeCardStatus { get; set; }
|
||||
|
||||
public DateTime? CurrentTime { get; set; }
|
||||
|
||||
public bool? IsTriggerWelcomeMsg { get; set; }
|
||||
}
|
||||
15
DAL/PGModels/Recordhotel.cs
Normal file
15
DAL/PGModels/Recordhotel.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class Recordhotel
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public int? HotelId { get; set; }
|
||||
|
||||
public int? RoomNo { get; set; }
|
||||
|
||||
public string? CreateTime { get; set; }
|
||||
}
|
||||
25
DAL/PGModels/SkyworthTvMonitorlog.cs
Normal file
25
DAL/PGModels/SkyworthTvMonitorlog.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class SkyworthTvMonitorlog
|
||||
{
|
||||
public long Id { get; set; }
|
||||
|
||||
public DateTime? RequestTime { get; set; }
|
||||
|
||||
public string? Step { get; set; }
|
||||
|
||||
public string? HotelCode { get; set; }
|
||||
|
||||
public string? RoomNum { get; set; }
|
||||
|
||||
public string? RequestCommand { get; set; }
|
||||
|
||||
public string? RequestId { get; set; }
|
||||
|
||||
public string? ResponseMsg { get; set; }
|
||||
|
||||
public DateTime? ResponseTime { get; set; }
|
||||
}
|
||||
21
DAL/PGModels/StatisticsTotal.cs
Normal file
21
DAL/PGModels/StatisticsTotal.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class StatisticsTotal
|
||||
{
|
||||
public long Id { get; set; }
|
||||
|
||||
public string? HotelCode { get; set; }
|
||||
|
||||
public int? TxCount { get; set; }
|
||||
|
||||
public string? HostNumber { get; set; }
|
||||
|
||||
public string? Mac { get; set; }
|
||||
|
||||
public int? RxCount { get; set; }
|
||||
|
||||
public string? UpdateTime { get; set; }
|
||||
}
|
||||
25
DAL/PGModels/TclTvMonitorlog.cs
Normal file
25
DAL/PGModels/TclTvMonitorlog.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class TclTvMonitorlog
|
||||
{
|
||||
public long Id { get; set; }
|
||||
|
||||
public DateTime? RequestTime { get; set; }
|
||||
|
||||
public string? Step { get; set; }
|
||||
|
||||
public string? HotelCode { get; set; }
|
||||
|
||||
public string? RoomNumber { get; set; }
|
||||
|
||||
public string? RequestCommand { get; set; }
|
||||
|
||||
public string? RequestId { get; set; }
|
||||
|
||||
public string? ResponseMsg { get; set; }
|
||||
|
||||
public DateTime? ResponseTime { get; set; }
|
||||
}
|
||||
23
DAL/PGModels/WebapiMonitorlog.cs
Normal file
23
DAL/PGModels/WebapiMonitorlog.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class WebapiMonitorlog
|
||||
{
|
||||
public long Id { get; set; }
|
||||
|
||||
public string? RemoteIp { get; set; }
|
||||
|
||||
public string? Parameters { get; set; }
|
||||
|
||||
public string? MethodName { get; set; }
|
||||
|
||||
public string? InvokStartTime { get; set; }
|
||||
|
||||
public string? InvokEndTime { get; set; }
|
||||
|
||||
public string? HotelCode { get; set; }
|
||||
|
||||
public string? RoomNumber { get; set; }
|
||||
}
|
||||
53
DAL/PGModels/_1001Log.cs
Normal file
53
DAL/PGModels/_1001Log.cs
Normal file
@@ -0,0 +1,53 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class _1001Log
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string? Room { get; set; }
|
||||
|
||||
public string? DeviceName { get; set; }
|
||||
|
||||
public short? Status { get; set; }
|
||||
|
||||
public string? Address { get; set; }
|
||||
|
||||
public long? TimeStamp { get; set; }
|
||||
|
||||
public bool? IsError { get; set; }
|
||||
|
||||
public bool? E001 { get; set; }
|
||||
|
||||
public bool? E002 { get; set; }
|
||||
|
||||
public bool? E003 { get; set; }
|
||||
|
||||
public bool? E004 { get; set; }
|
||||
|
||||
public bool? E005 { get; set; }
|
||||
|
||||
public bool? E006 { get; set; }
|
||||
|
||||
public bool? E007 { get; set; }
|
||||
|
||||
public bool? E008 { get; set; }
|
||||
|
||||
public long? Execute001 { get; set; }
|
||||
|
||||
public long? Execute002 { get; set; }
|
||||
|
||||
public long? Execute003 { get; set; }
|
||||
|
||||
public long? Execute004 { get; set; }
|
||||
|
||||
public long? Execute005 { get; set; }
|
||||
|
||||
public long? Execute006 { get; set; }
|
||||
|
||||
public long? Execute007 { get; set; }
|
||||
|
||||
public long? Execute008 { get; set; }
|
||||
}
|
||||
39
DAL/PGModels/_1001Room.cs
Normal file
39
DAL/PGModels/_1001Room.cs
Normal file
@@ -0,0 +1,39 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class _1001Room
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string? JudgTimeStr { get; set; }
|
||||
|
||||
public string? Room { get; set; }
|
||||
|
||||
public string? LoopAddr { get; set; }
|
||||
|
||||
public string? LoopName { get; set; }
|
||||
|
||||
public long? StateTyp { get; set; }
|
||||
|
||||
public bool? RcuStatus { get; set; }
|
||||
|
||||
public long? ModuleStartTime { get; set; }
|
||||
|
||||
public long? ModuleStopTime { get; set; }
|
||||
|
||||
public int? StartId { get; set; }
|
||||
|
||||
public long? StartTime { get; set; }
|
||||
|
||||
public int? StopId { get; set; }
|
||||
|
||||
public long? StopTime { get; set; }
|
||||
|
||||
public int? JudgCoun { get; set; }
|
||||
|
||||
public long? ExecuteId { get; set; }
|
||||
|
||||
public long? JudgTime { get; set; }
|
||||
}
|
||||
53
DAL/PGModels/_1001SimplificationLog.cs
Normal file
53
DAL/PGModels/_1001SimplificationLog.cs
Normal file
@@ -0,0 +1,53 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class _1001SimplificationLog
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string? Room { get; set; }
|
||||
|
||||
public string? DeviceName { get; set; }
|
||||
|
||||
public short? Status { get; set; }
|
||||
|
||||
public string? Address { get; set; }
|
||||
|
||||
public long? TimeStamp { get; set; }
|
||||
|
||||
public bool? IsError { get; set; }
|
||||
|
||||
public bool? E001 { get; set; }
|
||||
|
||||
public bool? E002 { get; set; }
|
||||
|
||||
public bool? E003 { get; set; }
|
||||
|
||||
public bool? E004 { get; set; }
|
||||
|
||||
public bool? E005 { get; set; }
|
||||
|
||||
public bool? E006 { get; set; }
|
||||
|
||||
public bool? E007 { get; set; }
|
||||
|
||||
public bool? E008 { get; set; }
|
||||
|
||||
public long? Execute001 { get; set; }
|
||||
|
||||
public long? Execute002 { get; set; }
|
||||
|
||||
public long? Execute003 { get; set; }
|
||||
|
||||
public long? Execute004 { get; set; }
|
||||
|
||||
public long? Execute005 { get; set; }
|
||||
|
||||
public long? Execute006 { get; set; }
|
||||
|
||||
public long? Execute007 { get; set; }
|
||||
|
||||
public long? Execute008 { get; set; }
|
||||
}
|
||||
51
DAL/PGModels/_1003Log.cs
Normal file
51
DAL/PGModels/_1003Log.cs
Normal file
@@ -0,0 +1,51 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class _1003Log
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string? Room { get; set; }
|
||||
|
||||
public string? DeviceName { get; set; }
|
||||
|
||||
public short? Status { get; set; }
|
||||
|
||||
public string? Address { get; set; }
|
||||
|
||||
public long? TimeStamp { get; set; }
|
||||
|
||||
public bool? IsError { get; set; }
|
||||
|
||||
public bool? E001 { get; set; }
|
||||
|
||||
public bool? E002 { get; set; }
|
||||
|
||||
public bool? E003 { get; set; }
|
||||
|
||||
public bool? E005 { get; set; }
|
||||
|
||||
public bool? E006 { get; set; }
|
||||
|
||||
public bool? E007 { get; set; }
|
||||
|
||||
public bool? E008 { get; set; }
|
||||
|
||||
public long? Execute001 { get; set; }
|
||||
|
||||
public long? Execute002 { get; set; }
|
||||
|
||||
public long? Execute003 { get; set; }
|
||||
|
||||
public long? Execute004 { get; set; }
|
||||
|
||||
public long? Execute005 { get; set; }
|
||||
|
||||
public long? Execute006 { get; set; }
|
||||
|
||||
public long? Execute007 { get; set; }
|
||||
|
||||
public long? Execute008 { get; set; }
|
||||
}
|
||||
31
DAL/PGModels/_1003Room.cs
Normal file
31
DAL/PGModels/_1003Room.cs
Normal file
@@ -0,0 +1,31 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class _1003Room
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string? Room { get; set; }
|
||||
|
||||
public short? RcuStatus { get; set; }
|
||||
|
||||
public DateOnly? Date { get; set; }
|
||||
|
||||
public int? E001 { get; set; }
|
||||
|
||||
public int? E002 { get; set; }
|
||||
|
||||
public int? E003 { get; set; }
|
||||
|
||||
public int? E005 { get; set; }
|
||||
|
||||
public int? E006 { get; set; }
|
||||
|
||||
public int? E007 { get; set; }
|
||||
|
||||
public int? E008 { get; set; }
|
||||
|
||||
public long? LogsLength { get; set; }
|
||||
}
|
||||
51
DAL/PGModels/_1003SimplificationLog.cs
Normal file
51
DAL/PGModels/_1003SimplificationLog.cs
Normal file
@@ -0,0 +1,51 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class _1003SimplificationLog
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string? Room { get; set; }
|
||||
|
||||
public string? DeviceName { get; set; }
|
||||
|
||||
public short? Status { get; set; }
|
||||
|
||||
public string? Address { get; set; }
|
||||
|
||||
public long? TimeStamp { get; set; }
|
||||
|
||||
public bool? IsError { get; set; }
|
||||
|
||||
public bool? E001 { get; set; }
|
||||
|
||||
public bool? E002 { get; set; }
|
||||
|
||||
public bool? E003 { get; set; }
|
||||
|
||||
public bool? E005 { get; set; }
|
||||
|
||||
public bool? E006 { get; set; }
|
||||
|
||||
public bool? E007 { get; set; }
|
||||
|
||||
public bool? E008 { get; set; }
|
||||
|
||||
public long? Execute001 { get; set; }
|
||||
|
||||
public long? Execute002 { get; set; }
|
||||
|
||||
public long? Execute003 { get; set; }
|
||||
|
||||
public long? Execute004 { get; set; }
|
||||
|
||||
public long? Execute005 { get; set; }
|
||||
|
||||
public long? Execute006 { get; set; }
|
||||
|
||||
public long? Execute007 { get; set; }
|
||||
|
||||
public long? Execute008 { get; set; }
|
||||
}
|
||||
53
DAL/PGModels/_1045Log.cs
Normal file
53
DAL/PGModels/_1045Log.cs
Normal file
@@ -0,0 +1,53 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class _1045Log
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string? Room { get; set; }
|
||||
|
||||
public string? DeviceName { get; set; }
|
||||
|
||||
public short? Status { get; set; }
|
||||
|
||||
public string? Address { get; set; }
|
||||
|
||||
public long? TimeStamp { get; set; }
|
||||
|
||||
public bool? IsError { get; set; }
|
||||
|
||||
public bool? E001 { get; set; }
|
||||
|
||||
public bool? E002 { get; set; }
|
||||
|
||||
public bool? E003 { get; set; }
|
||||
|
||||
public bool? E004 { get; set; }
|
||||
|
||||
public bool? E005 { get; set; }
|
||||
|
||||
public bool? E006 { get; set; }
|
||||
|
||||
public bool? E007 { get; set; }
|
||||
|
||||
public bool? E008 { get; set; }
|
||||
|
||||
public long? Execute001 { get; set; }
|
||||
|
||||
public long? Execute002 { get; set; }
|
||||
|
||||
public long? Execute003 { get; set; }
|
||||
|
||||
public long? Execute004 { get; set; }
|
||||
|
||||
public long? Execute005 { get; set; }
|
||||
|
||||
public long? Execute006 { get; set; }
|
||||
|
||||
public long? Execute007 { get; set; }
|
||||
|
||||
public long? Execute008 { get; set; }
|
||||
}
|
||||
39
DAL/PGModels/_1045Room.cs
Normal file
39
DAL/PGModels/_1045Room.cs
Normal file
@@ -0,0 +1,39 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class _1045Room
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string? JudgTimeStr { get; set; }
|
||||
|
||||
public string? Room { get; set; }
|
||||
|
||||
public string? LoopAddr { get; set; }
|
||||
|
||||
public string? LoopName { get; set; }
|
||||
|
||||
public long? StateTyp { get; set; }
|
||||
|
||||
public bool? RcuStatus { get; set; }
|
||||
|
||||
public long? ModuleStartTime { get; set; }
|
||||
|
||||
public long? ModuleStopTime { get; set; }
|
||||
|
||||
public int? StartId { get; set; }
|
||||
|
||||
public long? StartTime { get; set; }
|
||||
|
||||
public int? StopId { get; set; }
|
||||
|
||||
public long? StopTime { get; set; }
|
||||
|
||||
public int? JudgCoun { get; set; }
|
||||
|
||||
public long? ExecuteId { get; set; }
|
||||
|
||||
public long? JudgTime { get; set; }
|
||||
}
|
||||
53
DAL/PGModels/_1045SimplificationLog.cs
Normal file
53
DAL/PGModels/_1045SimplificationLog.cs
Normal file
@@ -0,0 +1,53 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class _1045SimplificationLog
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string? Room { get; set; }
|
||||
|
||||
public string? DeviceName { get; set; }
|
||||
|
||||
public short? Status { get; set; }
|
||||
|
||||
public string? Address { get; set; }
|
||||
|
||||
public long? TimeStamp { get; set; }
|
||||
|
||||
public bool? IsError { get; set; }
|
||||
|
||||
public bool? E001 { get; set; }
|
||||
|
||||
public bool? E002 { get; set; }
|
||||
|
||||
public bool? E003 { get; set; }
|
||||
|
||||
public bool? E004 { get; set; }
|
||||
|
||||
public bool? E005 { get; set; }
|
||||
|
||||
public bool? E006 { get; set; }
|
||||
|
||||
public bool? E007 { get; set; }
|
||||
|
||||
public bool? E008 { get; set; }
|
||||
|
||||
public long? Execute001 { get; set; }
|
||||
|
||||
public long? Execute002 { get; set; }
|
||||
|
||||
public long? Execute003 { get; set; }
|
||||
|
||||
public long? Execute004 { get; set; }
|
||||
|
||||
public long? Execute005 { get; set; }
|
||||
|
||||
public long? Execute006 { get; set; }
|
||||
|
||||
public long? Execute007 { get; set; }
|
||||
|
||||
public long? Execute008 { get; set; }
|
||||
}
|
||||
53
DAL/PGModels/_1085Log.cs
Normal file
53
DAL/PGModels/_1085Log.cs
Normal file
@@ -0,0 +1,53 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class _1085Log
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string? Room { get; set; }
|
||||
|
||||
public string? DeviceName { get; set; }
|
||||
|
||||
public short? Status { get; set; }
|
||||
|
||||
public string? Address { get; set; }
|
||||
|
||||
public long? TimeStamp { get; set; }
|
||||
|
||||
public bool? IsError { get; set; }
|
||||
|
||||
public bool? E001 { get; set; }
|
||||
|
||||
public bool? E002 { get; set; }
|
||||
|
||||
public bool? E003 { get; set; }
|
||||
|
||||
public bool? E004 { get; set; }
|
||||
|
||||
public bool? E005 { get; set; }
|
||||
|
||||
public bool? E006 { get; set; }
|
||||
|
||||
public bool? E007 { get; set; }
|
||||
|
||||
public bool? E008 { get; set; }
|
||||
|
||||
public long? Execute001 { get; set; }
|
||||
|
||||
public long? Execute002 { get; set; }
|
||||
|
||||
public long? Execute003 { get; set; }
|
||||
|
||||
public long? Execute004 { get; set; }
|
||||
|
||||
public long? Execute005 { get; set; }
|
||||
|
||||
public long? Execute006 { get; set; }
|
||||
|
||||
public long? Execute007 { get; set; }
|
||||
|
||||
public long? Execute008 { get; set; }
|
||||
}
|
||||
39
DAL/PGModels/_1085Room.cs
Normal file
39
DAL/PGModels/_1085Room.cs
Normal file
@@ -0,0 +1,39 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class _1085Room
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string? JudgTimeStr { get; set; }
|
||||
|
||||
public string? Room { get; set; }
|
||||
|
||||
public string? LoopAddr { get; set; }
|
||||
|
||||
public string? LoopName { get; set; }
|
||||
|
||||
public long? StateTyp { get; set; }
|
||||
|
||||
public bool? RcuStatus { get; set; }
|
||||
|
||||
public long? ModuleStartTime { get; set; }
|
||||
|
||||
public long? ModuleStopTime { get; set; }
|
||||
|
||||
public int? StartId { get; set; }
|
||||
|
||||
public long? StartTime { get; set; }
|
||||
|
||||
public int? StopId { get; set; }
|
||||
|
||||
public long? StopTime { get; set; }
|
||||
|
||||
public int? JudgCoun { get; set; }
|
||||
|
||||
public long? ExecuteId { get; set; }
|
||||
|
||||
public long? JudgTime { get; set; }
|
||||
}
|
||||
53
DAL/PGModels/_1085SimplificationLog.cs
Normal file
53
DAL/PGModels/_1085SimplificationLog.cs
Normal file
@@ -0,0 +1,53 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class _1085SimplificationLog
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string? Room { get; set; }
|
||||
|
||||
public string? DeviceName { get; set; }
|
||||
|
||||
public short? Status { get; set; }
|
||||
|
||||
public string? Address { get; set; }
|
||||
|
||||
public long? TimeStamp { get; set; }
|
||||
|
||||
public bool? IsError { get; set; }
|
||||
|
||||
public bool? E001 { get; set; }
|
||||
|
||||
public bool? E002 { get; set; }
|
||||
|
||||
public bool? E003 { get; set; }
|
||||
|
||||
public bool? E004 { get; set; }
|
||||
|
||||
public bool? E005 { get; set; }
|
||||
|
||||
public bool? E006 { get; set; }
|
||||
|
||||
public bool? E007 { get; set; }
|
||||
|
||||
public bool? E008 { get; set; }
|
||||
|
||||
public long? Execute001 { get; set; }
|
||||
|
||||
public long? Execute002 { get; set; }
|
||||
|
||||
public long? Execute003 { get; set; }
|
||||
|
||||
public long? Execute004 { get; set; }
|
||||
|
||||
public long? Execute005 { get; set; }
|
||||
|
||||
public long? Execute006 { get; set; }
|
||||
|
||||
public long? Execute007 { get; set; }
|
||||
|
||||
public long? Execute008 { get; set; }
|
||||
}
|
||||
53
DAL/PGModels/_1091Log.cs
Normal file
53
DAL/PGModels/_1091Log.cs
Normal file
@@ -0,0 +1,53 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class _1091Log
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string? Room { get; set; }
|
||||
|
||||
public string? DeviceName { get; set; }
|
||||
|
||||
public short? Status { get; set; }
|
||||
|
||||
public string? Address { get; set; }
|
||||
|
||||
public long? TimeStamp { get; set; }
|
||||
|
||||
public bool? IsError { get; set; }
|
||||
|
||||
public bool? E001 { get; set; }
|
||||
|
||||
public bool? E002 { get; set; }
|
||||
|
||||
public bool? E003 { get; set; }
|
||||
|
||||
public bool? E004 { get; set; }
|
||||
|
||||
public bool? E005 { get; set; }
|
||||
|
||||
public bool? E006 { get; set; }
|
||||
|
||||
public bool? E007 { get; set; }
|
||||
|
||||
public bool? E008 { get; set; }
|
||||
|
||||
public long? Execute001 { get; set; }
|
||||
|
||||
public long? Execute002 { get; set; }
|
||||
|
||||
public long? Execute003 { get; set; }
|
||||
|
||||
public long? Execute004 { get; set; }
|
||||
|
||||
public long? Execute005 { get; set; }
|
||||
|
||||
public long? Execute006 { get; set; }
|
||||
|
||||
public long? Execute007 { get; set; }
|
||||
|
||||
public long? Execute008 { get; set; }
|
||||
}
|
||||
39
DAL/PGModels/_1091Room.cs
Normal file
39
DAL/PGModels/_1091Room.cs
Normal file
@@ -0,0 +1,39 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class _1091Room
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string? JudgTimeStr { get; set; }
|
||||
|
||||
public string? Room { get; set; }
|
||||
|
||||
public string? LoopAddr { get; set; }
|
||||
|
||||
public string? LoopName { get; set; }
|
||||
|
||||
public long? StateTyp { get; set; }
|
||||
|
||||
public bool? RcuStatus { get; set; }
|
||||
|
||||
public long? ModuleStartTime { get; set; }
|
||||
|
||||
public long? ModuleStopTime { get; set; }
|
||||
|
||||
public int? StartId { get; set; }
|
||||
|
||||
public long? StartTime { get; set; }
|
||||
|
||||
public int? StopId { get; set; }
|
||||
|
||||
public long? StopTime { get; set; }
|
||||
|
||||
public int? JudgCoun { get; set; }
|
||||
|
||||
public long? ExecuteId { get; set; }
|
||||
|
||||
public long? JudgTime { get; set; }
|
||||
}
|
||||
53
DAL/PGModels/_1091SimplificationLog.cs
Normal file
53
DAL/PGModels/_1091SimplificationLog.cs
Normal file
@@ -0,0 +1,53 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class _1091SimplificationLog
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string? Room { get; set; }
|
||||
|
||||
public string? DeviceName { get; set; }
|
||||
|
||||
public short? Status { get; set; }
|
||||
|
||||
public string? Address { get; set; }
|
||||
|
||||
public long? TimeStamp { get; set; }
|
||||
|
||||
public bool? IsError { get; set; }
|
||||
|
||||
public bool? E001 { get; set; }
|
||||
|
||||
public bool? E002 { get; set; }
|
||||
|
||||
public bool? E003 { get; set; }
|
||||
|
||||
public bool? E004 { get; set; }
|
||||
|
||||
public bool? E005 { get; set; }
|
||||
|
||||
public bool? E006 { get; set; }
|
||||
|
||||
public bool? E007 { get; set; }
|
||||
|
||||
public bool? E008 { get; set; }
|
||||
|
||||
public long? Execute001 { get; set; }
|
||||
|
||||
public long? Execute002 { get; set; }
|
||||
|
||||
public long? Execute003 { get; set; }
|
||||
|
||||
public long? Execute004 { get; set; }
|
||||
|
||||
public long? Execute005 { get; set; }
|
||||
|
||||
public long? Execute006 { get; set; }
|
||||
|
||||
public long? Execute007 { get; set; }
|
||||
|
||||
public long? Execute008 { get; set; }
|
||||
}
|
||||
53
DAL/PGModels/_1106Log.cs
Normal file
53
DAL/PGModels/_1106Log.cs
Normal file
@@ -0,0 +1,53 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class _1106Log
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string? Room { get; set; }
|
||||
|
||||
public string? DeviceName { get; set; }
|
||||
|
||||
public short? Status { get; set; }
|
||||
|
||||
public string? Address { get; set; }
|
||||
|
||||
public long? TimeStamp { get; set; }
|
||||
|
||||
public bool? IsError { get; set; }
|
||||
|
||||
public bool? E001 { get; set; }
|
||||
|
||||
public bool? E002 { get; set; }
|
||||
|
||||
public bool? E003 { get; set; }
|
||||
|
||||
public bool? E004 { get; set; }
|
||||
|
||||
public bool? E005 { get; set; }
|
||||
|
||||
public bool? E006 { get; set; }
|
||||
|
||||
public bool? E007 { get; set; }
|
||||
|
||||
public bool? E008 { get; set; }
|
||||
|
||||
public long? Execute001 { get; set; }
|
||||
|
||||
public long? Execute002 { get; set; }
|
||||
|
||||
public long? Execute003 { get; set; }
|
||||
|
||||
public long? Execute004 { get; set; }
|
||||
|
||||
public long? Execute005 { get; set; }
|
||||
|
||||
public long? Execute006 { get; set; }
|
||||
|
||||
public long? Execute007 { get; set; }
|
||||
|
||||
public long? Execute008 { get; set; }
|
||||
}
|
||||
39
DAL/PGModels/_1106Room.cs
Normal file
39
DAL/PGModels/_1106Room.cs
Normal file
@@ -0,0 +1,39 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class _1106Room
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string? JudgTimeStr { get; set; }
|
||||
|
||||
public string? Room { get; set; }
|
||||
|
||||
public string? LoopAddr { get; set; }
|
||||
|
||||
public string? LoopName { get; set; }
|
||||
|
||||
public long? StateTyp { get; set; }
|
||||
|
||||
public bool? RcuStatus { get; set; }
|
||||
|
||||
public long? ModuleStartTime { get; set; }
|
||||
|
||||
public long? ModuleStopTime { get; set; }
|
||||
|
||||
public int? StartId { get; set; }
|
||||
|
||||
public long? StartTime { get; set; }
|
||||
|
||||
public int? StopId { get; set; }
|
||||
|
||||
public long? StopTime { get; set; }
|
||||
|
||||
public int? JudgCoun { get; set; }
|
||||
|
||||
public long? ExecuteId { get; set; }
|
||||
|
||||
public long? JudgTime { get; set; }
|
||||
}
|
||||
53
DAL/PGModels/_1106SimplificationLog.cs
Normal file
53
DAL/PGModels/_1106SimplificationLog.cs
Normal file
@@ -0,0 +1,53 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class _1106SimplificationLog
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string? Room { get; set; }
|
||||
|
||||
public string? DeviceName { get; set; }
|
||||
|
||||
public short? Status { get; set; }
|
||||
|
||||
public string? Address { get; set; }
|
||||
|
||||
public long? TimeStamp { get; set; }
|
||||
|
||||
public bool? IsError { get; set; }
|
||||
|
||||
public bool? E001 { get; set; }
|
||||
|
||||
public bool? E002 { get; set; }
|
||||
|
||||
public bool? E003 { get; set; }
|
||||
|
||||
public bool? E004 { get; set; }
|
||||
|
||||
public bool? E005 { get; set; }
|
||||
|
||||
public bool? E006 { get; set; }
|
||||
|
||||
public bool? E007 { get; set; }
|
||||
|
||||
public bool? E008 { get; set; }
|
||||
|
||||
public long? Execute001 { get; set; }
|
||||
|
||||
public long? Execute002 { get; set; }
|
||||
|
||||
public long? Execute003 { get; set; }
|
||||
|
||||
public long? Execute004 { get; set; }
|
||||
|
||||
public long? Execute005 { get; set; }
|
||||
|
||||
public long? Execute006 { get; set; }
|
||||
|
||||
public long? Execute007 { get; set; }
|
||||
|
||||
public long? Execute008 { get; set; }
|
||||
}
|
||||
53
DAL/PGModels/_1197Log.cs
Normal file
53
DAL/PGModels/_1197Log.cs
Normal file
@@ -0,0 +1,53 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class _1197Log
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string? Room { get; set; }
|
||||
|
||||
public string? DeviceName { get; set; }
|
||||
|
||||
public short? Status { get; set; }
|
||||
|
||||
public string? Address { get; set; }
|
||||
|
||||
public long? TimeStamp { get; set; }
|
||||
|
||||
public bool? IsError { get; set; }
|
||||
|
||||
public bool? E001 { get; set; }
|
||||
|
||||
public bool? E002 { get; set; }
|
||||
|
||||
public bool? E003 { get; set; }
|
||||
|
||||
public bool? E004 { get; set; }
|
||||
|
||||
public bool? E005 { get; set; }
|
||||
|
||||
public bool? E006 { get; set; }
|
||||
|
||||
public bool? E007 { get; set; }
|
||||
|
||||
public bool? E008 { get; set; }
|
||||
|
||||
public long? Execute001 { get; set; }
|
||||
|
||||
public long? Execute002 { get; set; }
|
||||
|
||||
public long? Execute003 { get; set; }
|
||||
|
||||
public long? Execute004 { get; set; }
|
||||
|
||||
public long? Execute005 { get; set; }
|
||||
|
||||
public long? Execute006 { get; set; }
|
||||
|
||||
public long? Execute007 { get; set; }
|
||||
|
||||
public long? Execute008 { get; set; }
|
||||
}
|
||||
39
DAL/PGModels/_1197Room.cs
Normal file
39
DAL/PGModels/_1197Room.cs
Normal file
@@ -0,0 +1,39 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class _1197Room
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string? JudgTimeStr { get; set; }
|
||||
|
||||
public string? Room { get; set; }
|
||||
|
||||
public string? LoopAddr { get; set; }
|
||||
|
||||
public string? LoopName { get; set; }
|
||||
|
||||
public long? StateTyp { get; set; }
|
||||
|
||||
public bool? RcuStatus { get; set; }
|
||||
|
||||
public long? ModuleStartTime { get; set; }
|
||||
|
||||
public long? ModuleStopTime { get; set; }
|
||||
|
||||
public int? StartId { get; set; }
|
||||
|
||||
public long? StartTime { get; set; }
|
||||
|
||||
public int? StopId { get; set; }
|
||||
|
||||
public long? StopTime { get; set; }
|
||||
|
||||
public int? JudgCoun { get; set; }
|
||||
|
||||
public long? ExecuteId { get; set; }
|
||||
|
||||
public long? JudgTime { get; set; }
|
||||
}
|
||||
53
DAL/PGModels/_1197SimplificationLog.cs
Normal file
53
DAL/PGModels/_1197SimplificationLog.cs
Normal file
@@ -0,0 +1,53 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class _1197SimplificationLog
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string? Room { get; set; }
|
||||
|
||||
public string? DeviceName { get; set; }
|
||||
|
||||
public short? Status { get; set; }
|
||||
|
||||
public string? Address { get; set; }
|
||||
|
||||
public long? TimeStamp { get; set; }
|
||||
|
||||
public bool? IsError { get; set; }
|
||||
|
||||
public bool? E001 { get; set; }
|
||||
|
||||
public bool? E002 { get; set; }
|
||||
|
||||
public bool? E003 { get; set; }
|
||||
|
||||
public bool? E004 { get; set; }
|
||||
|
||||
public bool? E005 { get; set; }
|
||||
|
||||
public bool? E006 { get; set; }
|
||||
|
||||
public bool? E007 { get; set; }
|
||||
|
||||
public bool? E008 { get; set; }
|
||||
|
||||
public long? Execute001 { get; set; }
|
||||
|
||||
public long? Execute002 { get; set; }
|
||||
|
||||
public long? Execute003 { get; set; }
|
||||
|
||||
public long? Execute004 { get; set; }
|
||||
|
||||
public long? Execute005 { get; set; }
|
||||
|
||||
public long? Execute006 { get; set; }
|
||||
|
||||
public long? Execute007 { get; set; }
|
||||
|
||||
public long? Execute008 { get; set; }
|
||||
}
|
||||
53
DAL/PGModels/_1304Log.cs
Normal file
53
DAL/PGModels/_1304Log.cs
Normal file
@@ -0,0 +1,53 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class _1304Log
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string? Room { get; set; }
|
||||
|
||||
public string? DeviceName { get; set; }
|
||||
|
||||
public short? Status { get; set; }
|
||||
|
||||
public string? Address { get; set; }
|
||||
|
||||
public long? TimeStamp { get; set; }
|
||||
|
||||
public bool? IsError { get; set; }
|
||||
|
||||
public bool? E001 { get; set; }
|
||||
|
||||
public bool? E002 { get; set; }
|
||||
|
||||
public bool? E003 { get; set; }
|
||||
|
||||
public bool? E004 { get; set; }
|
||||
|
||||
public bool? E005 { get; set; }
|
||||
|
||||
public bool? E006 { get; set; }
|
||||
|
||||
public bool? E007 { get; set; }
|
||||
|
||||
public bool? E008 { get; set; }
|
||||
|
||||
public long? Execute001 { get; set; }
|
||||
|
||||
public long? Execute002 { get; set; }
|
||||
|
||||
public long? Execute003 { get; set; }
|
||||
|
||||
public long? Execute004 { get; set; }
|
||||
|
||||
public long? Execute005 { get; set; }
|
||||
|
||||
public long? Execute006 { get; set; }
|
||||
|
||||
public long? Execute007 { get; set; }
|
||||
|
||||
public long? Execute008 { get; set; }
|
||||
}
|
||||
39
DAL/PGModels/_1304Room.cs
Normal file
39
DAL/PGModels/_1304Room.cs
Normal file
@@ -0,0 +1,39 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class _1304Room
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string? JudgTimeStr { get; set; }
|
||||
|
||||
public string? Room { get; set; }
|
||||
|
||||
public string? LoopAddr { get; set; }
|
||||
|
||||
public string? LoopName { get; set; }
|
||||
|
||||
public long? StateTyp { get; set; }
|
||||
|
||||
public bool? RcuStatus { get; set; }
|
||||
|
||||
public long? ModuleStartTime { get; set; }
|
||||
|
||||
public long? ModuleStopTime { get; set; }
|
||||
|
||||
public int? StartId { get; set; }
|
||||
|
||||
public long? StartTime { get; set; }
|
||||
|
||||
public int? StopId { get; set; }
|
||||
|
||||
public long? StopTime { get; set; }
|
||||
|
||||
public int? JudgCoun { get; set; }
|
||||
|
||||
public long? ExecuteId { get; set; }
|
||||
|
||||
public long? JudgTime { get; set; }
|
||||
}
|
||||
53
DAL/PGModels/_1304SimplificationLog.cs
Normal file
53
DAL/PGModels/_1304SimplificationLog.cs
Normal file
@@ -0,0 +1,53 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class _1304SimplificationLog
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string? Room { get; set; }
|
||||
|
||||
public string? DeviceName { get; set; }
|
||||
|
||||
public short? Status { get; set; }
|
||||
|
||||
public string? Address { get; set; }
|
||||
|
||||
public long? TimeStamp { get; set; }
|
||||
|
||||
public bool? IsError { get; set; }
|
||||
|
||||
public bool? E001 { get; set; }
|
||||
|
||||
public bool? E002 { get; set; }
|
||||
|
||||
public bool? E003 { get; set; }
|
||||
|
||||
public bool? E004 { get; set; }
|
||||
|
||||
public bool? E005 { get; set; }
|
||||
|
||||
public bool? E006 { get; set; }
|
||||
|
||||
public bool? E007 { get; set; }
|
||||
|
||||
public bool? E008 { get; set; }
|
||||
|
||||
public long? Execute001 { get; set; }
|
||||
|
||||
public long? Execute002 { get; set; }
|
||||
|
||||
public long? Execute003 { get; set; }
|
||||
|
||||
public long? Execute004 { get; set; }
|
||||
|
||||
public long? Execute005 { get; set; }
|
||||
|
||||
public long? Execute006 { get; set; }
|
||||
|
||||
public long? Execute007 { get; set; }
|
||||
|
||||
public long? Execute008 { get; set; }
|
||||
}
|
||||
53
DAL/PGModels/_1399Log.cs
Normal file
53
DAL/PGModels/_1399Log.cs
Normal file
@@ -0,0 +1,53 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class _1399Log
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string? Room { get; set; }
|
||||
|
||||
public string? DeviceName { get; set; }
|
||||
|
||||
public short? Status { get; set; }
|
||||
|
||||
public string? Address { get; set; }
|
||||
|
||||
public long? TimeStamp { get; set; }
|
||||
|
||||
public bool? IsError { get; set; }
|
||||
|
||||
public bool? E001 { get; set; }
|
||||
|
||||
public bool? E002 { get; set; }
|
||||
|
||||
public bool? E003 { get; set; }
|
||||
|
||||
public bool? E004 { get; set; }
|
||||
|
||||
public bool? E005 { get; set; }
|
||||
|
||||
public bool? E006 { get; set; }
|
||||
|
||||
public bool? E007 { get; set; }
|
||||
|
||||
public bool? E008 { get; set; }
|
||||
|
||||
public long? Execute001 { get; set; }
|
||||
|
||||
public long? Execute002 { get; set; }
|
||||
|
||||
public long? Execute003 { get; set; }
|
||||
|
||||
public long? Execute004 { get; set; }
|
||||
|
||||
public long? Execute005 { get; set; }
|
||||
|
||||
public long? Execute006 { get; set; }
|
||||
|
||||
public long? Execute007 { get; set; }
|
||||
|
||||
public long? Execute008 { get; set; }
|
||||
}
|
||||
39
DAL/PGModels/_1399Room.cs
Normal file
39
DAL/PGModels/_1399Room.cs
Normal file
@@ -0,0 +1,39 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class _1399Room
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string? JudgTimeStr { get; set; }
|
||||
|
||||
public string? Room { get; set; }
|
||||
|
||||
public string? LoopAddr { get; set; }
|
||||
|
||||
public string? LoopName { get; set; }
|
||||
|
||||
public long? StateTyp { get; set; }
|
||||
|
||||
public bool? RcuStatus { get; set; }
|
||||
|
||||
public long? ModuleStartTime { get; set; }
|
||||
|
||||
public long? ModuleStopTime { get; set; }
|
||||
|
||||
public int? StartId { get; set; }
|
||||
|
||||
public long? StartTime { get; set; }
|
||||
|
||||
public int? StopId { get; set; }
|
||||
|
||||
public long? StopTime { get; set; }
|
||||
|
||||
public int? JudgCoun { get; set; }
|
||||
|
||||
public long? ExecuteId { get; set; }
|
||||
|
||||
public long? JudgTime { get; set; }
|
||||
}
|
||||
53
DAL/PGModels/_1399SimplificationLog.cs
Normal file
53
DAL/PGModels/_1399SimplificationLog.cs
Normal file
@@ -0,0 +1,53 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class _1399SimplificationLog
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string? Room { get; set; }
|
||||
|
||||
public string? DeviceName { get; set; }
|
||||
|
||||
public short? Status { get; set; }
|
||||
|
||||
public string? Address { get; set; }
|
||||
|
||||
public long? TimeStamp { get; set; }
|
||||
|
||||
public bool? IsError { get; set; }
|
||||
|
||||
public bool? E001 { get; set; }
|
||||
|
||||
public bool? E002 { get; set; }
|
||||
|
||||
public bool? E003 { get; set; }
|
||||
|
||||
public bool? E004 { get; set; }
|
||||
|
||||
public bool? E005 { get; set; }
|
||||
|
||||
public bool? E006 { get; set; }
|
||||
|
||||
public bool? E007 { get; set; }
|
||||
|
||||
public bool? E008 { get; set; }
|
||||
|
||||
public long? Execute001 { get; set; }
|
||||
|
||||
public long? Execute002 { get; set; }
|
||||
|
||||
public long? Execute003 { get; set; }
|
||||
|
||||
public long? Execute004 { get; set; }
|
||||
|
||||
public long? Execute005 { get; set; }
|
||||
|
||||
public long? Execute006 { get; set; }
|
||||
|
||||
public long? Execute007 { get; set; }
|
||||
|
||||
public long? Execute008 { get; set; }
|
||||
}
|
||||
53
DAL/PGModels/_1564Log.cs
Normal file
53
DAL/PGModels/_1564Log.cs
Normal file
@@ -0,0 +1,53 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class _1564Log
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string? Room { get; set; }
|
||||
|
||||
public string? DeviceName { get; set; }
|
||||
|
||||
public short? Status { get; set; }
|
||||
|
||||
public string? Address { get; set; }
|
||||
|
||||
public long? TimeStamp { get; set; }
|
||||
|
||||
public bool? IsError { get; set; }
|
||||
|
||||
public bool? E001 { get; set; }
|
||||
|
||||
public bool? E002 { get; set; }
|
||||
|
||||
public bool? E003 { get; set; }
|
||||
|
||||
public bool? E004 { get; set; }
|
||||
|
||||
public bool? E005 { get; set; }
|
||||
|
||||
public bool? E006 { get; set; }
|
||||
|
||||
public bool? E007 { get; set; }
|
||||
|
||||
public bool? E008 { get; set; }
|
||||
|
||||
public long? Execute001 { get; set; }
|
||||
|
||||
public long? Execute002 { get; set; }
|
||||
|
||||
public long? Execute003 { get; set; }
|
||||
|
||||
public long? Execute004 { get; set; }
|
||||
|
||||
public long? Execute005 { get; set; }
|
||||
|
||||
public long? Execute006 { get; set; }
|
||||
|
||||
public long? Execute007 { get; set; }
|
||||
|
||||
public long? Execute008 { get; set; }
|
||||
}
|
||||
39
DAL/PGModels/_1564Room.cs
Normal file
39
DAL/PGModels/_1564Room.cs
Normal file
@@ -0,0 +1,39 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class _1564Room
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string? JudgTimeStr { get; set; }
|
||||
|
||||
public string? Room { get; set; }
|
||||
|
||||
public string? LoopAddr { get; set; }
|
||||
|
||||
public string? LoopName { get; set; }
|
||||
|
||||
public long? StateTyp { get; set; }
|
||||
|
||||
public bool? RcuStatus { get; set; }
|
||||
|
||||
public long? ModuleStartTime { get; set; }
|
||||
|
||||
public long? ModuleStopTime { get; set; }
|
||||
|
||||
public int? StartId { get; set; }
|
||||
|
||||
public long? StartTime { get; set; }
|
||||
|
||||
public int? StopId { get; set; }
|
||||
|
||||
public long? StopTime { get; set; }
|
||||
|
||||
public int? JudgCoun { get; set; }
|
||||
|
||||
public long? ExecuteId { get; set; }
|
||||
|
||||
public long? JudgTime { get; set; }
|
||||
}
|
||||
53
DAL/PGModels/_1564SimplificationLog.cs
Normal file
53
DAL/PGModels/_1564SimplificationLog.cs
Normal file
@@ -0,0 +1,53 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class _1564SimplificationLog
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string? Room { get; set; }
|
||||
|
||||
public string? DeviceName { get; set; }
|
||||
|
||||
public short? Status { get; set; }
|
||||
|
||||
public string? Address { get; set; }
|
||||
|
||||
public long? TimeStamp { get; set; }
|
||||
|
||||
public bool? IsError { get; set; }
|
||||
|
||||
public bool? E001 { get; set; }
|
||||
|
||||
public bool? E002 { get; set; }
|
||||
|
||||
public bool? E003 { get; set; }
|
||||
|
||||
public bool? E004 { get; set; }
|
||||
|
||||
public bool? E005 { get; set; }
|
||||
|
||||
public bool? E006 { get; set; }
|
||||
|
||||
public bool? E007 { get; set; }
|
||||
|
||||
public bool? E008 { get; set; }
|
||||
|
||||
public long? Execute001 { get; set; }
|
||||
|
||||
public long? Execute002 { get; set; }
|
||||
|
||||
public long? Execute003 { get; set; }
|
||||
|
||||
public long? Execute004 { get; set; }
|
||||
|
||||
public long? Execute005 { get; set; }
|
||||
|
||||
public long? Execute006 { get; set; }
|
||||
|
||||
public long? Execute007 { get; set; }
|
||||
|
||||
public long? Execute008 { get; set; }
|
||||
}
|
||||
53
DAL/PGModels/_1633Log.cs
Normal file
53
DAL/PGModels/_1633Log.cs
Normal file
@@ -0,0 +1,53 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class _1633Log
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string? Room { get; set; }
|
||||
|
||||
public string? DeviceName { get; set; }
|
||||
|
||||
public short? Status { get; set; }
|
||||
|
||||
public string? Address { get; set; }
|
||||
|
||||
public long? TimeStamp { get; set; }
|
||||
|
||||
public bool? IsError { get; set; }
|
||||
|
||||
public bool? E001 { get; set; }
|
||||
|
||||
public bool? E002 { get; set; }
|
||||
|
||||
public bool? E003 { get; set; }
|
||||
|
||||
public bool? E004 { get; set; }
|
||||
|
||||
public bool? E005 { get; set; }
|
||||
|
||||
public bool? E006 { get; set; }
|
||||
|
||||
public bool? E007 { get; set; }
|
||||
|
||||
public bool? E008 { get; set; }
|
||||
|
||||
public long? Execute001 { get; set; }
|
||||
|
||||
public long? Execute002 { get; set; }
|
||||
|
||||
public long? Execute003 { get; set; }
|
||||
|
||||
public long? Execute004 { get; set; }
|
||||
|
||||
public long? Execute005 { get; set; }
|
||||
|
||||
public long? Execute006 { get; set; }
|
||||
|
||||
public long? Execute007 { get; set; }
|
||||
|
||||
public long? Execute008 { get; set; }
|
||||
}
|
||||
39
DAL/PGModels/_1633Room.cs
Normal file
39
DAL/PGModels/_1633Room.cs
Normal file
@@ -0,0 +1,39 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class _1633Room
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string? JudgTimeStr { get; set; }
|
||||
|
||||
public string? Room { get; set; }
|
||||
|
||||
public string? LoopAddr { get; set; }
|
||||
|
||||
public string? LoopName { get; set; }
|
||||
|
||||
public long? StateTyp { get; set; }
|
||||
|
||||
public bool? RcuStatus { get; set; }
|
||||
|
||||
public long? ModuleStartTime { get; set; }
|
||||
|
||||
public long? ModuleStopTime { get; set; }
|
||||
|
||||
public int? StartId { get; set; }
|
||||
|
||||
public long? StartTime { get; set; }
|
||||
|
||||
public int? StopId { get; set; }
|
||||
|
||||
public long? StopTime { get; set; }
|
||||
|
||||
public int? JudgCoun { get; set; }
|
||||
|
||||
public long? ExecuteId { get; set; }
|
||||
|
||||
public long? JudgTime { get; set; }
|
||||
}
|
||||
53
DAL/PGModels/_1633SimplificationLog.cs
Normal file
53
DAL/PGModels/_1633SimplificationLog.cs
Normal file
@@ -0,0 +1,53 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class _1633SimplificationLog
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string? Room { get; set; }
|
||||
|
||||
public string? DeviceName { get; set; }
|
||||
|
||||
public short? Status { get; set; }
|
||||
|
||||
public string? Address { get; set; }
|
||||
|
||||
public long? TimeStamp { get; set; }
|
||||
|
||||
public bool? IsError { get; set; }
|
||||
|
||||
public bool? E001 { get; set; }
|
||||
|
||||
public bool? E002 { get; set; }
|
||||
|
||||
public bool? E003 { get; set; }
|
||||
|
||||
public bool? E004 { get; set; }
|
||||
|
||||
public bool? E005 { get; set; }
|
||||
|
||||
public bool? E006 { get; set; }
|
||||
|
||||
public bool? E007 { get; set; }
|
||||
|
||||
public bool? E008 { get; set; }
|
||||
|
||||
public long? Execute001 { get; set; }
|
||||
|
||||
public long? Execute002 { get; set; }
|
||||
|
||||
public long? Execute003 { get; set; }
|
||||
|
||||
public long? Execute004 { get; set; }
|
||||
|
||||
public long? Execute005 { get; set; }
|
||||
|
||||
public long? Execute006 { get; set; }
|
||||
|
||||
public long? Execute007 { get; set; }
|
||||
|
||||
public long? Execute008 { get; set; }
|
||||
}
|
||||
53
DAL/PGModels/_1760Log.cs
Normal file
53
DAL/PGModels/_1760Log.cs
Normal file
@@ -0,0 +1,53 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class _1760Log
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string? Room { get; set; }
|
||||
|
||||
public string? DeviceName { get; set; }
|
||||
|
||||
public short? Status { get; set; }
|
||||
|
||||
public string? Address { get; set; }
|
||||
|
||||
public long? TimeStamp { get; set; }
|
||||
|
||||
public bool? IsError { get; set; }
|
||||
|
||||
public bool? E001 { get; set; }
|
||||
|
||||
public bool? E002 { get; set; }
|
||||
|
||||
public bool? E003 { get; set; }
|
||||
|
||||
public bool? E004 { get; set; }
|
||||
|
||||
public bool? E005 { get; set; }
|
||||
|
||||
public bool? E006 { get; set; }
|
||||
|
||||
public bool? E007 { get; set; }
|
||||
|
||||
public bool? E008 { get; set; }
|
||||
|
||||
public long? Execute001 { get; set; }
|
||||
|
||||
public long? Execute002 { get; set; }
|
||||
|
||||
public long? Execute003 { get; set; }
|
||||
|
||||
public long? Execute004 { get; set; }
|
||||
|
||||
public long? Execute005 { get; set; }
|
||||
|
||||
public long? Execute006 { get; set; }
|
||||
|
||||
public long? Execute007 { get; set; }
|
||||
|
||||
public long? Execute008 { get; set; }
|
||||
}
|
||||
39
DAL/PGModels/_1760Room.cs
Normal file
39
DAL/PGModels/_1760Room.cs
Normal file
@@ -0,0 +1,39 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class _1760Room
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string? JudgTimeStr { get; set; }
|
||||
|
||||
public string? Room { get; set; }
|
||||
|
||||
public string? LoopAddr { get; set; }
|
||||
|
||||
public string? LoopName { get; set; }
|
||||
|
||||
public long? StateTyp { get; set; }
|
||||
|
||||
public bool? RcuStatus { get; set; }
|
||||
|
||||
public long? ModuleStartTime { get; set; }
|
||||
|
||||
public long? ModuleStopTime { get; set; }
|
||||
|
||||
public int? StartId { get; set; }
|
||||
|
||||
public long? StartTime { get; set; }
|
||||
|
||||
public int? StopId { get; set; }
|
||||
|
||||
public long? StopTime { get; set; }
|
||||
|
||||
public int? JudgCoun { get; set; }
|
||||
|
||||
public long? ExecuteId { get; set; }
|
||||
|
||||
public long? JudgTime { get; set; }
|
||||
}
|
||||
53
DAL/PGModels/_1760SimplificationLog.cs
Normal file
53
DAL/PGModels/_1760SimplificationLog.cs
Normal file
@@ -0,0 +1,53 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class _1760SimplificationLog
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string? Room { get; set; }
|
||||
|
||||
public string? DeviceName { get; set; }
|
||||
|
||||
public short? Status { get; set; }
|
||||
|
||||
public string? Address { get; set; }
|
||||
|
||||
public long? TimeStamp { get; set; }
|
||||
|
||||
public bool? IsError { get; set; }
|
||||
|
||||
public bool? E001 { get; set; }
|
||||
|
||||
public bool? E002 { get; set; }
|
||||
|
||||
public bool? E003 { get; set; }
|
||||
|
||||
public bool? E004 { get; set; }
|
||||
|
||||
public bool? E005 { get; set; }
|
||||
|
||||
public bool? E006 { get; set; }
|
||||
|
||||
public bool? E007 { get; set; }
|
||||
|
||||
public bool? E008 { get; set; }
|
||||
|
||||
public long? Execute001 { get; set; }
|
||||
|
||||
public long? Execute002 { get; set; }
|
||||
|
||||
public long? Execute003 { get; set; }
|
||||
|
||||
public long? Execute004 { get; set; }
|
||||
|
||||
public long? Execute005 { get; set; }
|
||||
|
||||
public long? Execute006 { get; set; }
|
||||
|
||||
public long? Execute007 { get; set; }
|
||||
|
||||
public long? Execute008 { get; set; }
|
||||
}
|
||||
53
DAL/PGModels/_1781Log.cs
Normal file
53
DAL/PGModels/_1781Log.cs
Normal file
@@ -0,0 +1,53 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class _1781Log
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string? Room { get; set; }
|
||||
|
||||
public string? DeviceName { get; set; }
|
||||
|
||||
public short? Status { get; set; }
|
||||
|
||||
public string? Address { get; set; }
|
||||
|
||||
public long? TimeStamp { get; set; }
|
||||
|
||||
public bool? IsError { get; set; }
|
||||
|
||||
public bool? E001 { get; set; }
|
||||
|
||||
public bool? E002 { get; set; }
|
||||
|
||||
public bool? E003 { get; set; }
|
||||
|
||||
public bool? E004 { get; set; }
|
||||
|
||||
public bool? E005 { get; set; }
|
||||
|
||||
public bool? E006 { get; set; }
|
||||
|
||||
public bool? E007 { get; set; }
|
||||
|
||||
public bool? E008 { get; set; }
|
||||
|
||||
public long? Execute001 { get; set; }
|
||||
|
||||
public long? Execute002 { get; set; }
|
||||
|
||||
public long? Execute003 { get; set; }
|
||||
|
||||
public long? Execute004 { get; set; }
|
||||
|
||||
public long? Execute005 { get; set; }
|
||||
|
||||
public long? Execute006 { get; set; }
|
||||
|
||||
public long? Execute007 { get; set; }
|
||||
|
||||
public long? Execute008 { get; set; }
|
||||
}
|
||||
39
DAL/PGModels/_1781Room.cs
Normal file
39
DAL/PGModels/_1781Room.cs
Normal file
@@ -0,0 +1,39 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class _1781Room
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string? JudgTimeStr { get; set; }
|
||||
|
||||
public string? Room { get; set; }
|
||||
|
||||
public string? LoopAddr { get; set; }
|
||||
|
||||
public string? LoopName { get; set; }
|
||||
|
||||
public long? StateTyp { get; set; }
|
||||
|
||||
public bool? RcuStatus { get; set; }
|
||||
|
||||
public long? ModuleStartTime { get; set; }
|
||||
|
||||
public long? ModuleStopTime { get; set; }
|
||||
|
||||
public int? StartId { get; set; }
|
||||
|
||||
public long? StartTime { get; set; }
|
||||
|
||||
public int? StopId { get; set; }
|
||||
|
||||
public long? StopTime { get; set; }
|
||||
|
||||
public int? JudgCoun { get; set; }
|
||||
|
||||
public long? ExecuteId { get; set; }
|
||||
|
||||
public long? JudgTime { get; set; }
|
||||
}
|
||||
53
DAL/PGModels/_1781SimplificationLog.cs
Normal file
53
DAL/PGModels/_1781SimplificationLog.cs
Normal file
@@ -0,0 +1,53 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class _1781SimplificationLog
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string? Room { get; set; }
|
||||
|
||||
public string? DeviceName { get; set; }
|
||||
|
||||
public short? Status { get; set; }
|
||||
|
||||
public string? Address { get; set; }
|
||||
|
||||
public long? TimeStamp { get; set; }
|
||||
|
||||
public bool? IsError { get; set; }
|
||||
|
||||
public bool? E001 { get; set; }
|
||||
|
||||
public bool? E002 { get; set; }
|
||||
|
||||
public bool? E003 { get; set; }
|
||||
|
||||
public bool? E004 { get; set; }
|
||||
|
||||
public bool? E005 { get; set; }
|
||||
|
||||
public bool? E006 { get; set; }
|
||||
|
||||
public bool? E007 { get; set; }
|
||||
|
||||
public bool? E008 { get; set; }
|
||||
|
||||
public long? Execute001 { get; set; }
|
||||
|
||||
public long? Execute002 { get; set; }
|
||||
|
||||
public long? Execute003 { get; set; }
|
||||
|
||||
public long? Execute004 { get; set; }
|
||||
|
||||
public long? Execute005 { get; set; }
|
||||
|
||||
public long? Execute006 { get; set; }
|
||||
|
||||
public long? Execute007 { get; set; }
|
||||
|
||||
public long? Execute008 { get; set; }
|
||||
}
|
||||
53
DAL/PGModels/_1849Log.cs
Normal file
53
DAL/PGModels/_1849Log.cs
Normal file
@@ -0,0 +1,53 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class _1849Log
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string? Room { get; set; }
|
||||
|
||||
public string? DeviceName { get; set; }
|
||||
|
||||
public short? Status { get; set; }
|
||||
|
||||
public string? Address { get; set; }
|
||||
|
||||
public long? TimeStamp { get; set; }
|
||||
|
||||
public bool? IsError { get; set; }
|
||||
|
||||
public bool? E001 { get; set; }
|
||||
|
||||
public bool? E002 { get; set; }
|
||||
|
||||
public bool? E003 { get; set; }
|
||||
|
||||
public bool? E004 { get; set; }
|
||||
|
||||
public bool? E005 { get; set; }
|
||||
|
||||
public bool? E006 { get; set; }
|
||||
|
||||
public bool? E007 { get; set; }
|
||||
|
||||
public bool? E008 { get; set; }
|
||||
|
||||
public long? Execute001 { get; set; }
|
||||
|
||||
public long? Execute002 { get; set; }
|
||||
|
||||
public long? Execute003 { get; set; }
|
||||
|
||||
public long? Execute004 { get; set; }
|
||||
|
||||
public long? Execute005 { get; set; }
|
||||
|
||||
public long? Execute006 { get; set; }
|
||||
|
||||
public long? Execute007 { get; set; }
|
||||
|
||||
public long? Execute008 { get; set; }
|
||||
}
|
||||
39
DAL/PGModels/_1849Room.cs
Normal file
39
DAL/PGModels/_1849Room.cs
Normal file
@@ -0,0 +1,39 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class _1849Room
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string? JudgTimeStr { get; set; }
|
||||
|
||||
public string? Room { get; set; }
|
||||
|
||||
public string? LoopAddr { get; set; }
|
||||
|
||||
public string? LoopName { get; set; }
|
||||
|
||||
public long? StateTyp { get; set; }
|
||||
|
||||
public bool? RcuStatus { get; set; }
|
||||
|
||||
public long? ModuleStartTime { get; set; }
|
||||
|
||||
public long? ModuleStopTime { get; set; }
|
||||
|
||||
public int? StartId { get; set; }
|
||||
|
||||
public long? StartTime { get; set; }
|
||||
|
||||
public int? StopId { get; set; }
|
||||
|
||||
public long? StopTime { get; set; }
|
||||
|
||||
public int? JudgCoun { get; set; }
|
||||
|
||||
public long? ExecuteId { get; set; }
|
||||
|
||||
public long? JudgTime { get; set; }
|
||||
}
|
||||
53
DAL/PGModels/_1849SimplificationLog.cs
Normal file
53
DAL/PGModels/_1849SimplificationLog.cs
Normal file
@@ -0,0 +1,53 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class _1849SimplificationLog
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string? Room { get; set; }
|
||||
|
||||
public string? DeviceName { get; set; }
|
||||
|
||||
public short? Status { get; set; }
|
||||
|
||||
public string? Address { get; set; }
|
||||
|
||||
public long? TimeStamp { get; set; }
|
||||
|
||||
public bool? IsError { get; set; }
|
||||
|
||||
public bool? E001 { get; set; }
|
||||
|
||||
public bool? E002 { get; set; }
|
||||
|
||||
public bool? E003 { get; set; }
|
||||
|
||||
public bool? E004 { get; set; }
|
||||
|
||||
public bool? E005 { get; set; }
|
||||
|
||||
public bool? E006 { get; set; }
|
||||
|
||||
public bool? E007 { get; set; }
|
||||
|
||||
public bool? E008 { get; set; }
|
||||
|
||||
public long? Execute001 { get; set; }
|
||||
|
||||
public long? Execute002 { get; set; }
|
||||
|
||||
public long? Execute003 { get; set; }
|
||||
|
||||
public long? Execute004 { get; set; }
|
||||
|
||||
public long? Execute005 { get; set; }
|
||||
|
||||
public long? Execute006 { get; set; }
|
||||
|
||||
public long? Execute007 { get; set; }
|
||||
|
||||
public long? Execute008 { get; set; }
|
||||
}
|
||||
53
DAL/PGModels/_1866Log.cs
Normal file
53
DAL/PGModels/_1866Log.cs
Normal file
@@ -0,0 +1,53 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class _1866Log
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string? Room { get; set; }
|
||||
|
||||
public string? DeviceName { get; set; }
|
||||
|
||||
public short? Status { get; set; }
|
||||
|
||||
public string? Address { get; set; }
|
||||
|
||||
public long? TimeStamp { get; set; }
|
||||
|
||||
public bool? IsError { get; set; }
|
||||
|
||||
public bool? E001 { get; set; }
|
||||
|
||||
public bool? E002 { get; set; }
|
||||
|
||||
public bool? E003 { get; set; }
|
||||
|
||||
public bool? E004 { get; set; }
|
||||
|
||||
public bool? E005 { get; set; }
|
||||
|
||||
public bool? E006 { get; set; }
|
||||
|
||||
public bool? E007 { get; set; }
|
||||
|
||||
public bool? E008 { get; set; }
|
||||
|
||||
public long? Execute001 { get; set; }
|
||||
|
||||
public long? Execute002 { get; set; }
|
||||
|
||||
public long? Execute003 { get; set; }
|
||||
|
||||
public long? Execute004 { get; set; }
|
||||
|
||||
public long? Execute005 { get; set; }
|
||||
|
||||
public long? Execute006 { get; set; }
|
||||
|
||||
public long? Execute007 { get; set; }
|
||||
|
||||
public long? Execute008 { get; set; }
|
||||
}
|
||||
39
DAL/PGModels/_1866Room.cs
Normal file
39
DAL/PGModels/_1866Room.cs
Normal file
@@ -0,0 +1,39 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class _1866Room
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string? JudgTimeStr { get; set; }
|
||||
|
||||
public string? Room { get; set; }
|
||||
|
||||
public string? LoopAddr { get; set; }
|
||||
|
||||
public string? LoopName { get; set; }
|
||||
|
||||
public long? StateTyp { get; set; }
|
||||
|
||||
public bool? RcuStatus { get; set; }
|
||||
|
||||
public long? ModuleStartTime { get; set; }
|
||||
|
||||
public long? ModuleStopTime { get; set; }
|
||||
|
||||
public int? StartId { get; set; }
|
||||
|
||||
public long? StartTime { get; set; }
|
||||
|
||||
public int? StopId { get; set; }
|
||||
|
||||
public long? StopTime { get; set; }
|
||||
|
||||
public int? JudgCoun { get; set; }
|
||||
|
||||
public long? ExecuteId { get; set; }
|
||||
|
||||
public long? JudgTime { get; set; }
|
||||
}
|
||||
53
DAL/PGModels/_1866SimplificationLog.cs
Normal file
53
DAL/PGModels/_1866SimplificationLog.cs
Normal file
@@ -0,0 +1,53 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class _1866SimplificationLog
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string? Room { get; set; }
|
||||
|
||||
public string? DeviceName { get; set; }
|
||||
|
||||
public short? Status { get; set; }
|
||||
|
||||
public string? Address { get; set; }
|
||||
|
||||
public long? TimeStamp { get; set; }
|
||||
|
||||
public bool? IsError { get; set; }
|
||||
|
||||
public bool? E001 { get; set; }
|
||||
|
||||
public bool? E002 { get; set; }
|
||||
|
||||
public bool? E003 { get; set; }
|
||||
|
||||
public bool? E004 { get; set; }
|
||||
|
||||
public bool? E005 { get; set; }
|
||||
|
||||
public bool? E006 { get; set; }
|
||||
|
||||
public bool? E007 { get; set; }
|
||||
|
||||
public bool? E008 { get; set; }
|
||||
|
||||
public long? Execute001 { get; set; }
|
||||
|
||||
public long? Execute002 { get; set; }
|
||||
|
||||
public long? Execute003 { get; set; }
|
||||
|
||||
public long? Execute004 { get; set; }
|
||||
|
||||
public long? Execute005 { get; set; }
|
||||
|
||||
public long? Execute006 { get; set; }
|
||||
|
||||
public long? Execute007 { get; set; }
|
||||
|
||||
public long? Execute008 { get; set; }
|
||||
}
|
||||
53
DAL/PGModels/_2006Log.cs
Normal file
53
DAL/PGModels/_2006Log.cs
Normal file
@@ -0,0 +1,53 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class _2006Log
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string? Room { get; set; }
|
||||
|
||||
public string? DeviceName { get; set; }
|
||||
|
||||
public short? Status { get; set; }
|
||||
|
||||
public string? Address { get; set; }
|
||||
|
||||
public long? TimeStamp { get; set; }
|
||||
|
||||
public bool? IsError { get; set; }
|
||||
|
||||
public bool? E001 { get; set; }
|
||||
|
||||
public bool? E002 { get; set; }
|
||||
|
||||
public bool? E003 { get; set; }
|
||||
|
||||
public bool? E004 { get; set; }
|
||||
|
||||
public bool? E005 { get; set; }
|
||||
|
||||
public bool? E006 { get; set; }
|
||||
|
||||
public bool? E007 { get; set; }
|
||||
|
||||
public bool? E008 { get; set; }
|
||||
|
||||
public long? Execute001 { get; set; }
|
||||
|
||||
public long? Execute002 { get; set; }
|
||||
|
||||
public long? Execute003 { get; set; }
|
||||
|
||||
public long? Execute004 { get; set; }
|
||||
|
||||
public long? Execute005 { get; set; }
|
||||
|
||||
public long? Execute006 { get; set; }
|
||||
|
||||
public long? Execute007 { get; set; }
|
||||
|
||||
public long? Execute008 { get; set; }
|
||||
}
|
||||
39
DAL/PGModels/_2006Room.cs
Normal file
39
DAL/PGModels/_2006Room.cs
Normal file
@@ -0,0 +1,39 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class _2006Room
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string? JudgTimeStr { get; set; }
|
||||
|
||||
public string? Room { get; set; }
|
||||
|
||||
public string? LoopAddr { get; set; }
|
||||
|
||||
public string? LoopName { get; set; }
|
||||
|
||||
public long? StateTyp { get; set; }
|
||||
|
||||
public bool? RcuStatus { get; set; }
|
||||
|
||||
public long? ModuleStartTime { get; set; }
|
||||
|
||||
public long? ModuleStopTime { get; set; }
|
||||
|
||||
public int? StartId { get; set; }
|
||||
|
||||
public long? StartTime { get; set; }
|
||||
|
||||
public int? StopId { get; set; }
|
||||
|
||||
public long? StopTime { get; set; }
|
||||
|
||||
public int? JudgCoun { get; set; }
|
||||
|
||||
public long? ExecuteId { get; set; }
|
||||
|
||||
public long? JudgTime { get; set; }
|
||||
}
|
||||
53
DAL/PGModels/_2006SimplificationLog.cs
Normal file
53
DAL/PGModels/_2006SimplificationLog.cs
Normal file
@@ -0,0 +1,53 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class _2006SimplificationLog
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string? Room { get; set; }
|
||||
|
||||
public string? DeviceName { get; set; }
|
||||
|
||||
public short? Status { get; set; }
|
||||
|
||||
public string? Address { get; set; }
|
||||
|
||||
public long? TimeStamp { get; set; }
|
||||
|
||||
public bool? IsError { get; set; }
|
||||
|
||||
public bool? E001 { get; set; }
|
||||
|
||||
public bool? E002 { get; set; }
|
||||
|
||||
public bool? E003 { get; set; }
|
||||
|
||||
public bool? E004 { get; set; }
|
||||
|
||||
public bool? E005 { get; set; }
|
||||
|
||||
public bool? E006 { get; set; }
|
||||
|
||||
public bool? E007 { get; set; }
|
||||
|
||||
public bool? E008 { get; set; }
|
||||
|
||||
public long? Execute001 { get; set; }
|
||||
|
||||
public long? Execute002 { get; set; }
|
||||
|
||||
public long? Execute003 { get; set; }
|
||||
|
||||
public long? Execute004 { get; set; }
|
||||
|
||||
public long? Execute005 { get; set; }
|
||||
|
||||
public long? Execute006 { get; set; }
|
||||
|
||||
public long? Execute007 { get; set; }
|
||||
|
||||
public long? Execute008 { get; set; }
|
||||
}
|
||||
53
DAL/PGModels/_2013Log.cs
Normal file
53
DAL/PGModels/_2013Log.cs
Normal file
@@ -0,0 +1,53 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class _2013Log
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string? Room { get; set; }
|
||||
|
||||
public string? DeviceName { get; set; }
|
||||
|
||||
public short? Status { get; set; }
|
||||
|
||||
public string? Address { get; set; }
|
||||
|
||||
public long? TimeStamp { get; set; }
|
||||
|
||||
public bool? IsError { get; set; }
|
||||
|
||||
public bool? E001 { get; set; }
|
||||
|
||||
public bool? E002 { get; set; }
|
||||
|
||||
public bool? E003 { get; set; }
|
||||
|
||||
public bool? E004 { get; set; }
|
||||
|
||||
public bool? E005 { get; set; }
|
||||
|
||||
public bool? E006 { get; set; }
|
||||
|
||||
public bool? E007 { get; set; }
|
||||
|
||||
public bool? E008 { get; set; }
|
||||
|
||||
public long? Execute001 { get; set; }
|
||||
|
||||
public long? Execute002 { get; set; }
|
||||
|
||||
public long? Execute003 { get; set; }
|
||||
|
||||
public long? Execute004 { get; set; }
|
||||
|
||||
public long? Execute005 { get; set; }
|
||||
|
||||
public long? Execute006 { get; set; }
|
||||
|
||||
public long? Execute007 { get; set; }
|
||||
|
||||
public long? Execute008 { get; set; }
|
||||
}
|
||||
39
DAL/PGModels/_2013Room.cs
Normal file
39
DAL/PGModels/_2013Room.cs
Normal file
@@ -0,0 +1,39 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class _2013Room
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string? JudgTimeStr { get; set; }
|
||||
|
||||
public string? Room { get; set; }
|
||||
|
||||
public string? LoopAddr { get; set; }
|
||||
|
||||
public string? LoopName { get; set; }
|
||||
|
||||
public long? StateTyp { get; set; }
|
||||
|
||||
public bool? RcuStatus { get; set; }
|
||||
|
||||
public long? ModuleStartTime { get; set; }
|
||||
|
||||
public long? ModuleStopTime { get; set; }
|
||||
|
||||
public int? StartId { get; set; }
|
||||
|
||||
public long? StartTime { get; set; }
|
||||
|
||||
public int? StopId { get; set; }
|
||||
|
||||
public long? StopTime { get; set; }
|
||||
|
||||
public int? JudgCoun { get; set; }
|
||||
|
||||
public long? ExecuteId { get; set; }
|
||||
|
||||
public long? JudgTime { get; set; }
|
||||
}
|
||||
53
DAL/PGModels/_2013SimplificationLog.cs
Normal file
53
DAL/PGModels/_2013SimplificationLog.cs
Normal file
@@ -0,0 +1,53 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class _2013SimplificationLog
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string? Room { get; set; }
|
||||
|
||||
public string? DeviceName { get; set; }
|
||||
|
||||
public short? Status { get; set; }
|
||||
|
||||
public string? Address { get; set; }
|
||||
|
||||
public long? TimeStamp { get; set; }
|
||||
|
||||
public bool? IsError { get; set; }
|
||||
|
||||
public bool? E001 { get; set; }
|
||||
|
||||
public bool? E002 { get; set; }
|
||||
|
||||
public bool? E003 { get; set; }
|
||||
|
||||
public bool? E004 { get; set; }
|
||||
|
||||
public bool? E005 { get; set; }
|
||||
|
||||
public bool? E006 { get; set; }
|
||||
|
||||
public bool? E007 { get; set; }
|
||||
|
||||
public bool? E008 { get; set; }
|
||||
|
||||
public long? Execute001 { get; set; }
|
||||
|
||||
public long? Execute002 { get; set; }
|
||||
|
||||
public long? Execute003 { get; set; }
|
||||
|
||||
public long? Execute004 { get; set; }
|
||||
|
||||
public long? Execute005 { get; set; }
|
||||
|
||||
public long? Execute006 { get; set; }
|
||||
|
||||
public long? Execute007 { get; set; }
|
||||
|
||||
public long? Execute008 { get; set; }
|
||||
}
|
||||
53
DAL/PGModels/_2016Log.cs
Normal file
53
DAL/PGModels/_2016Log.cs
Normal file
@@ -0,0 +1,53 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class _2016Log
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string? Room { get; set; }
|
||||
|
||||
public string? DeviceName { get; set; }
|
||||
|
||||
public short? Status { get; set; }
|
||||
|
||||
public string? Address { get; set; }
|
||||
|
||||
public long? TimeStamp { get; set; }
|
||||
|
||||
public bool? IsError { get; set; }
|
||||
|
||||
public bool? E001 { get; set; }
|
||||
|
||||
public bool? E002 { get; set; }
|
||||
|
||||
public bool? E003 { get; set; }
|
||||
|
||||
public bool? E004 { get; set; }
|
||||
|
||||
public bool? E005 { get; set; }
|
||||
|
||||
public bool? E006 { get; set; }
|
||||
|
||||
public bool? E007 { get; set; }
|
||||
|
||||
public bool? E008 { get; set; }
|
||||
|
||||
public long? Execute001 { get; set; }
|
||||
|
||||
public long? Execute002 { get; set; }
|
||||
|
||||
public long? Execute003 { get; set; }
|
||||
|
||||
public long? Execute004 { get; set; }
|
||||
|
||||
public long? Execute005 { get; set; }
|
||||
|
||||
public long? Execute006 { get; set; }
|
||||
|
||||
public long? Execute007 { get; set; }
|
||||
|
||||
public long? Execute008 { get; set; }
|
||||
}
|
||||
39
DAL/PGModels/_2016Room.cs
Normal file
39
DAL/PGModels/_2016Room.cs
Normal file
@@ -0,0 +1,39 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class _2016Room
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string? JudgTimeStr { get; set; }
|
||||
|
||||
public string? Room { get; set; }
|
||||
|
||||
public string? LoopAddr { get; set; }
|
||||
|
||||
public string? LoopName { get; set; }
|
||||
|
||||
public long? StateTyp { get; set; }
|
||||
|
||||
public bool? RcuStatus { get; set; }
|
||||
|
||||
public long? ModuleStartTime { get; set; }
|
||||
|
||||
public long? ModuleStopTime { get; set; }
|
||||
|
||||
public int? StartId { get; set; }
|
||||
|
||||
public long? StartTime { get; set; }
|
||||
|
||||
public int? StopId { get; set; }
|
||||
|
||||
public long? StopTime { get; set; }
|
||||
|
||||
public int? JudgCoun { get; set; }
|
||||
|
||||
public long? ExecuteId { get; set; }
|
||||
|
||||
public long? JudgTime { get; set; }
|
||||
}
|
||||
53
DAL/PGModels/_2016SimplificationLog.cs
Normal file
53
DAL/PGModels/_2016SimplificationLog.cs
Normal file
@@ -0,0 +1,53 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class _2016SimplificationLog
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string? Room { get; set; }
|
||||
|
||||
public string? DeviceName { get; set; }
|
||||
|
||||
public short? Status { get; set; }
|
||||
|
||||
public string? Address { get; set; }
|
||||
|
||||
public long? TimeStamp { get; set; }
|
||||
|
||||
public bool? IsError { get; set; }
|
||||
|
||||
public bool? E001 { get; set; }
|
||||
|
||||
public bool? E002 { get; set; }
|
||||
|
||||
public bool? E003 { get; set; }
|
||||
|
||||
public bool? E004 { get; set; }
|
||||
|
||||
public bool? E005 { get; set; }
|
||||
|
||||
public bool? E006 { get; set; }
|
||||
|
||||
public bool? E007 { get; set; }
|
||||
|
||||
public bool? E008 { get; set; }
|
||||
|
||||
public long? Execute001 { get; set; }
|
||||
|
||||
public long? Execute002 { get; set; }
|
||||
|
||||
public long? Execute003 { get; set; }
|
||||
|
||||
public long? Execute004 { get; set; }
|
||||
|
||||
public long? Execute005 { get; set; }
|
||||
|
||||
public long? Execute006 { get; set; }
|
||||
|
||||
public long? Execute007 { get; set; }
|
||||
|
||||
public long? Execute008 { get; set; }
|
||||
}
|
||||
53
DAL/PGModels/_2032Log.cs
Normal file
53
DAL/PGModels/_2032Log.cs
Normal file
@@ -0,0 +1,53 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class _2032Log
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string? Room { get; set; }
|
||||
|
||||
public string? DeviceName { get; set; }
|
||||
|
||||
public short? Status { get; set; }
|
||||
|
||||
public string? Address { get; set; }
|
||||
|
||||
public long? TimeStamp { get; set; }
|
||||
|
||||
public bool? IsError { get; set; }
|
||||
|
||||
public bool? E001 { get; set; }
|
||||
|
||||
public bool? E002 { get; set; }
|
||||
|
||||
public bool? E003 { get; set; }
|
||||
|
||||
public bool? E004 { get; set; }
|
||||
|
||||
public bool? E005 { get; set; }
|
||||
|
||||
public bool? E006 { get; set; }
|
||||
|
||||
public bool? E007 { get; set; }
|
||||
|
||||
public bool? E008 { get; set; }
|
||||
|
||||
public long? Execute001 { get; set; }
|
||||
|
||||
public long? Execute002 { get; set; }
|
||||
|
||||
public long? Execute003 { get; set; }
|
||||
|
||||
public long? Execute004 { get; set; }
|
||||
|
||||
public long? Execute005 { get; set; }
|
||||
|
||||
public long? Execute006 { get; set; }
|
||||
|
||||
public long? Execute007 { get; set; }
|
||||
|
||||
public long? Execute008 { get; set; }
|
||||
}
|
||||
39
DAL/PGModels/_2032Room.cs
Normal file
39
DAL/PGModels/_2032Room.cs
Normal file
@@ -0,0 +1,39 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class _2032Room
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string? JudgTimeStr { get; set; }
|
||||
|
||||
public string? Room { get; set; }
|
||||
|
||||
public string? LoopAddr { get; set; }
|
||||
|
||||
public string? LoopName { get; set; }
|
||||
|
||||
public long? StateTyp { get; set; }
|
||||
|
||||
public bool? RcuStatus { get; set; }
|
||||
|
||||
public long? ModuleStartTime { get; set; }
|
||||
|
||||
public long? ModuleStopTime { get; set; }
|
||||
|
||||
public int? StartId { get; set; }
|
||||
|
||||
public long? StartTime { get; set; }
|
||||
|
||||
public int? StopId { get; set; }
|
||||
|
||||
public long? StopTime { get; set; }
|
||||
|
||||
public int? JudgCoun { get; set; }
|
||||
|
||||
public long? ExecuteId { get; set; }
|
||||
|
||||
public long? JudgTime { get; set; }
|
||||
}
|
||||
53
DAL/PGModels/_2032SimplificationLog.cs
Normal file
53
DAL/PGModels/_2032SimplificationLog.cs
Normal file
@@ -0,0 +1,53 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class _2032SimplificationLog
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string? Room { get; set; }
|
||||
|
||||
public string? DeviceName { get; set; }
|
||||
|
||||
public short? Status { get; set; }
|
||||
|
||||
public string? Address { get; set; }
|
||||
|
||||
public long? TimeStamp { get; set; }
|
||||
|
||||
public bool? IsError { get; set; }
|
||||
|
||||
public bool? E001 { get; set; }
|
||||
|
||||
public bool? E002 { get; set; }
|
||||
|
||||
public bool? E003 { get; set; }
|
||||
|
||||
public bool? E004 { get; set; }
|
||||
|
||||
public bool? E005 { get; set; }
|
||||
|
||||
public bool? E006 { get; set; }
|
||||
|
||||
public bool? E007 { get; set; }
|
||||
|
||||
public bool? E008 { get; set; }
|
||||
|
||||
public long? Execute001 { get; set; }
|
||||
|
||||
public long? Execute002 { get; set; }
|
||||
|
||||
public long? Execute003 { get; set; }
|
||||
|
||||
public long? Execute004 { get; set; }
|
||||
|
||||
public long? Execute005 { get; set; }
|
||||
|
||||
public long? Execute006 { get; set; }
|
||||
|
||||
public long? Execute007 { get; set; }
|
||||
|
||||
public long? Execute008 { get; set; }
|
||||
}
|
||||
53
DAL/PGModels/_2079Log.cs
Normal file
53
DAL/PGModels/_2079Log.cs
Normal file
@@ -0,0 +1,53 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class _2079Log
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string? Room { get; set; }
|
||||
|
||||
public string? DeviceName { get; set; }
|
||||
|
||||
public short? Status { get; set; }
|
||||
|
||||
public string? Address { get; set; }
|
||||
|
||||
public long? TimeStamp { get; set; }
|
||||
|
||||
public bool? IsError { get; set; }
|
||||
|
||||
public bool? E001 { get; set; }
|
||||
|
||||
public bool? E002 { get; set; }
|
||||
|
||||
public bool? E003 { get; set; }
|
||||
|
||||
public bool? E004 { get; set; }
|
||||
|
||||
public bool? E005 { get; set; }
|
||||
|
||||
public bool? E006 { get; set; }
|
||||
|
||||
public bool? E007 { get; set; }
|
||||
|
||||
public bool? E008 { get; set; }
|
||||
|
||||
public long? Execute001 { get; set; }
|
||||
|
||||
public long? Execute002 { get; set; }
|
||||
|
||||
public long? Execute003 { get; set; }
|
||||
|
||||
public long? Execute004 { get; set; }
|
||||
|
||||
public long? Execute005 { get; set; }
|
||||
|
||||
public long? Execute006 { get; set; }
|
||||
|
||||
public long? Execute007 { get; set; }
|
||||
|
||||
public long? Execute008 { get; set; }
|
||||
}
|
||||
39
DAL/PGModels/_2079Room.cs
Normal file
39
DAL/PGModels/_2079Room.cs
Normal file
@@ -0,0 +1,39 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class _2079Room
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string? JudgTimeStr { get; set; }
|
||||
|
||||
public string? Room { get; set; }
|
||||
|
||||
public string? LoopAddr { get; set; }
|
||||
|
||||
public string? LoopName { get; set; }
|
||||
|
||||
public long? StateTyp { get; set; }
|
||||
|
||||
public bool? RcuStatus { get; set; }
|
||||
|
||||
public long? ModuleStartTime { get; set; }
|
||||
|
||||
public long? ModuleStopTime { get; set; }
|
||||
|
||||
public int? StartId { get; set; }
|
||||
|
||||
public long? StartTime { get; set; }
|
||||
|
||||
public int? StopId { get; set; }
|
||||
|
||||
public long? StopTime { get; set; }
|
||||
|
||||
public int? JudgCoun { get; set; }
|
||||
|
||||
public long? ExecuteId { get; set; }
|
||||
|
||||
public long? JudgTime { get; set; }
|
||||
}
|
||||
53
DAL/PGModels/_2079SimplificationLog.cs
Normal file
53
DAL/PGModels/_2079SimplificationLog.cs
Normal file
@@ -0,0 +1,53 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class _2079SimplificationLog
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string? Room { get; set; }
|
||||
|
||||
public string? DeviceName { get; set; }
|
||||
|
||||
public short? Status { get; set; }
|
||||
|
||||
public string? Address { get; set; }
|
||||
|
||||
public long? TimeStamp { get; set; }
|
||||
|
||||
public bool? IsError { get; set; }
|
||||
|
||||
public bool? E001 { get; set; }
|
||||
|
||||
public bool? E002 { get; set; }
|
||||
|
||||
public bool? E003 { get; set; }
|
||||
|
||||
public bool? E004 { get; set; }
|
||||
|
||||
public bool? E005 { get; set; }
|
||||
|
||||
public bool? E006 { get; set; }
|
||||
|
||||
public bool? E007 { get; set; }
|
||||
|
||||
public bool? E008 { get; set; }
|
||||
|
||||
public long? Execute001 { get; set; }
|
||||
|
||||
public long? Execute002 { get; set; }
|
||||
|
||||
public long? Execute003 { get; set; }
|
||||
|
||||
public long? Execute004 { get; set; }
|
||||
|
||||
public long? Execute005 { get; set; }
|
||||
|
||||
public long? Execute006 { get; set; }
|
||||
|
||||
public long? Execute007 { get; set; }
|
||||
|
||||
public long? Execute008 { get; set; }
|
||||
}
|
||||
53
DAL/PGModels/_2108Log.cs
Normal file
53
DAL/PGModels/_2108Log.cs
Normal file
@@ -0,0 +1,53 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class _2108Log
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string? Room { get; set; }
|
||||
|
||||
public string? DeviceName { get; set; }
|
||||
|
||||
public short? Status { get; set; }
|
||||
|
||||
public string? Address { get; set; }
|
||||
|
||||
public long? TimeStamp { get; set; }
|
||||
|
||||
public bool? IsError { get; set; }
|
||||
|
||||
public bool? E001 { get; set; }
|
||||
|
||||
public bool? E002 { get; set; }
|
||||
|
||||
public bool? E003 { get; set; }
|
||||
|
||||
public bool? E004 { get; set; }
|
||||
|
||||
public bool? E005 { get; set; }
|
||||
|
||||
public bool? E006 { get; set; }
|
||||
|
||||
public bool? E007 { get; set; }
|
||||
|
||||
public bool? E008 { get; set; }
|
||||
|
||||
public long? Execute001 { get; set; }
|
||||
|
||||
public long? Execute002 { get; set; }
|
||||
|
||||
public long? Execute003 { get; set; }
|
||||
|
||||
public long? Execute004 { get; set; }
|
||||
|
||||
public long? Execute005 { get; set; }
|
||||
|
||||
public long? Execute006 { get; set; }
|
||||
|
||||
public long? Execute007 { get; set; }
|
||||
|
||||
public long? Execute008 { get; set; }
|
||||
}
|
||||
39
DAL/PGModels/_2108Room.cs
Normal file
39
DAL/PGModels/_2108Room.cs
Normal file
@@ -0,0 +1,39 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class _2108Room
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string? JudgTimeStr { get; set; }
|
||||
|
||||
public string? Room { get; set; }
|
||||
|
||||
public string? LoopAddr { get; set; }
|
||||
|
||||
public string? LoopName { get; set; }
|
||||
|
||||
public long? StateTyp { get; set; }
|
||||
|
||||
public bool? RcuStatus { get; set; }
|
||||
|
||||
public long? ModuleStartTime { get; set; }
|
||||
|
||||
public long? ModuleStopTime { get; set; }
|
||||
|
||||
public int? StartId { get; set; }
|
||||
|
||||
public long? StartTime { get; set; }
|
||||
|
||||
public int? StopId { get; set; }
|
||||
|
||||
public long? StopTime { get; set; }
|
||||
|
||||
public int? JudgCoun { get; set; }
|
||||
|
||||
public long? ExecuteId { get; set; }
|
||||
|
||||
public long? JudgTime { get; set; }
|
||||
}
|
||||
53
DAL/PGModels/_2108SimplificationLog.cs
Normal file
53
DAL/PGModels/_2108SimplificationLog.cs
Normal file
@@ -0,0 +1,53 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class _2108SimplificationLog
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string? Room { get; set; }
|
||||
|
||||
public string? DeviceName { get; set; }
|
||||
|
||||
public short? Status { get; set; }
|
||||
|
||||
public string? Address { get; set; }
|
||||
|
||||
public long? TimeStamp { get; set; }
|
||||
|
||||
public bool? IsError { get; set; }
|
||||
|
||||
public bool? E001 { get; set; }
|
||||
|
||||
public bool? E002 { get; set; }
|
||||
|
||||
public bool? E003 { get; set; }
|
||||
|
||||
public bool? E004 { get; set; }
|
||||
|
||||
public bool? E005 { get; set; }
|
||||
|
||||
public bool? E006 { get; set; }
|
||||
|
||||
public bool? E007 { get; set; }
|
||||
|
||||
public bool? E008 { get; set; }
|
||||
|
||||
public long? Execute001 { get; set; }
|
||||
|
||||
public long? Execute002 { get; set; }
|
||||
|
||||
public long? Execute003 { get; set; }
|
||||
|
||||
public long? Execute004 { get; set; }
|
||||
|
||||
public long? Execute005 { get; set; }
|
||||
|
||||
public long? Execute006 { get; set; }
|
||||
|
||||
public long? Execute007 { get; set; }
|
||||
|
||||
public long? Execute008 { get; set; }
|
||||
}
|
||||
53
DAL/PGModels/_2170Log.cs
Normal file
53
DAL/PGModels/_2170Log.cs
Normal file
@@ -0,0 +1,53 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class _2170Log
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string? Room { get; set; }
|
||||
|
||||
public string? DeviceName { get; set; }
|
||||
|
||||
public short? Status { get; set; }
|
||||
|
||||
public string? Address { get; set; }
|
||||
|
||||
public long? TimeStamp { get; set; }
|
||||
|
||||
public bool? IsError { get; set; }
|
||||
|
||||
public bool? E001 { get; set; }
|
||||
|
||||
public bool? E002 { get; set; }
|
||||
|
||||
public bool? E003 { get; set; }
|
||||
|
||||
public bool? E004 { get; set; }
|
||||
|
||||
public bool? E005 { get; set; }
|
||||
|
||||
public bool? E006 { get; set; }
|
||||
|
||||
public bool? E007 { get; set; }
|
||||
|
||||
public bool? E008 { get; set; }
|
||||
|
||||
public long? Execute001 { get; set; }
|
||||
|
||||
public long? Execute002 { get; set; }
|
||||
|
||||
public long? Execute003 { get; set; }
|
||||
|
||||
public long? Execute004 { get; set; }
|
||||
|
||||
public long? Execute005 { get; set; }
|
||||
|
||||
public long? Execute006 { get; set; }
|
||||
|
||||
public long? Execute007 { get; set; }
|
||||
|
||||
public long? Execute008 { get; set; }
|
||||
}
|
||||
39
DAL/PGModels/_2170Room.cs
Normal file
39
DAL/PGModels/_2170Room.cs
Normal file
@@ -0,0 +1,39 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class _2170Room
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string? JudgTimeStr { get; set; }
|
||||
|
||||
public string? Room { get; set; }
|
||||
|
||||
public string? LoopAddr { get; set; }
|
||||
|
||||
public string? LoopName { get; set; }
|
||||
|
||||
public long? StateTyp { get; set; }
|
||||
|
||||
public bool? RcuStatus { get; set; }
|
||||
|
||||
public long? ModuleStartTime { get; set; }
|
||||
|
||||
public long? ModuleStopTime { get; set; }
|
||||
|
||||
public int? StartId { get; set; }
|
||||
|
||||
public long? StartTime { get; set; }
|
||||
|
||||
public int? StopId { get; set; }
|
||||
|
||||
public long? StopTime { get; set; }
|
||||
|
||||
public int? JudgCoun { get; set; }
|
||||
|
||||
public long? ExecuteId { get; set; }
|
||||
|
||||
public long? JudgTime { get; set; }
|
||||
}
|
||||
53
DAL/PGModels/_2170SimplificationLog.cs
Normal file
53
DAL/PGModels/_2170SimplificationLog.cs
Normal file
@@ -0,0 +1,53 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class _2170SimplificationLog
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string? Room { get; set; }
|
||||
|
||||
public string? DeviceName { get; set; }
|
||||
|
||||
public short? Status { get; set; }
|
||||
|
||||
public string? Address { get; set; }
|
||||
|
||||
public long? TimeStamp { get; set; }
|
||||
|
||||
public bool? IsError { get; set; }
|
||||
|
||||
public bool? E001 { get; set; }
|
||||
|
||||
public bool? E002 { get; set; }
|
||||
|
||||
public bool? E003 { get; set; }
|
||||
|
||||
public bool? E004 { get; set; }
|
||||
|
||||
public bool? E005 { get; set; }
|
||||
|
||||
public bool? E006 { get; set; }
|
||||
|
||||
public bool? E007 { get; set; }
|
||||
|
||||
public bool? E008 { get; set; }
|
||||
|
||||
public long? Execute001 { get; set; }
|
||||
|
||||
public long? Execute002 { get; set; }
|
||||
|
||||
public long? Execute003 { get; set; }
|
||||
|
||||
public long? Execute004 { get; set; }
|
||||
|
||||
public long? Execute005 { get; set; }
|
||||
|
||||
public long? Execute006 { get; set; }
|
||||
|
||||
public long? Execute007 { get; set; }
|
||||
|
||||
public long? Execute008 { get; set; }
|
||||
}
|
||||
53
DAL/PGModels/_2209Log.cs
Normal file
53
DAL/PGModels/_2209Log.cs
Normal file
@@ -0,0 +1,53 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class _2209Log
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string? Room { get; set; }
|
||||
|
||||
public string? DeviceName { get; set; }
|
||||
|
||||
public short? Status { get; set; }
|
||||
|
||||
public string? Address { get; set; }
|
||||
|
||||
public long? TimeStamp { get; set; }
|
||||
|
||||
public bool? IsError { get; set; }
|
||||
|
||||
public bool? E001 { get; set; }
|
||||
|
||||
public bool? E002 { get; set; }
|
||||
|
||||
public bool? E003 { get; set; }
|
||||
|
||||
public bool? E004 { get; set; }
|
||||
|
||||
public bool? E005 { get; set; }
|
||||
|
||||
public bool? E006 { get; set; }
|
||||
|
||||
public bool? E007 { get; set; }
|
||||
|
||||
public bool? E008 { get; set; }
|
||||
|
||||
public long? Execute001 { get; set; }
|
||||
|
||||
public long? Execute002 { get; set; }
|
||||
|
||||
public long? Execute003 { get; set; }
|
||||
|
||||
public long? Execute004 { get; set; }
|
||||
|
||||
public long? Execute005 { get; set; }
|
||||
|
||||
public long? Execute006 { get; set; }
|
||||
|
||||
public long? Execute007 { get; set; }
|
||||
|
||||
public long? Execute008 { get; set; }
|
||||
}
|
||||
39
DAL/PGModels/_2209Room.cs
Normal file
39
DAL/PGModels/_2209Room.cs
Normal file
@@ -0,0 +1,39 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class _2209Room
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string? JudgTimeStr { get; set; }
|
||||
|
||||
public string? Room { get; set; }
|
||||
|
||||
public string? LoopAddr { get; set; }
|
||||
|
||||
public string? LoopName { get; set; }
|
||||
|
||||
public long? StateTyp { get; set; }
|
||||
|
||||
public bool? RcuStatus { get; set; }
|
||||
|
||||
public long? ModuleStartTime { get; set; }
|
||||
|
||||
public long? ModuleStopTime { get; set; }
|
||||
|
||||
public int? StartId { get; set; }
|
||||
|
||||
public long? StartTime { get; set; }
|
||||
|
||||
public int? StopId { get; set; }
|
||||
|
||||
public long? StopTime { get; set; }
|
||||
|
||||
public int? JudgCoun { get; set; }
|
||||
|
||||
public long? ExecuteId { get; set; }
|
||||
|
||||
public long? JudgTime { get; set; }
|
||||
}
|
||||
53
DAL/PGModels/_2209SimplificationLog.cs
Normal file
53
DAL/PGModels/_2209SimplificationLog.cs
Normal file
@@ -0,0 +1,53 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.PGModels;
|
||||
|
||||
public partial class _2209SimplificationLog
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string? Room { get; set; }
|
||||
|
||||
public string? DeviceName { get; set; }
|
||||
|
||||
public short? Status { get; set; }
|
||||
|
||||
public string? Address { get; set; }
|
||||
|
||||
public long? TimeStamp { get; set; }
|
||||
|
||||
public bool? IsError { get; set; }
|
||||
|
||||
public bool? E001 { get; set; }
|
||||
|
||||
public bool? E002 { get; set; }
|
||||
|
||||
public bool? E003 { get; set; }
|
||||
|
||||
public bool? E004 { get; set; }
|
||||
|
||||
public bool? E005 { get; set; }
|
||||
|
||||
public bool? E006 { get; set; }
|
||||
|
||||
public bool? E007 { get; set; }
|
||||
|
||||
public bool? E008 { get; set; }
|
||||
|
||||
public long? Execute001 { get; set; }
|
||||
|
||||
public long? Execute002 { get; set; }
|
||||
|
||||
public long? Execute003 { get; set; }
|
||||
|
||||
public long? Execute004 { get; set; }
|
||||
|
||||
public long? Execute005 { get; set; }
|
||||
|
||||
public long? Execute006 { get; set; }
|
||||
|
||||
public long? Execute007 { get; set; }
|
||||
|
||||
public long? Execute008 { get; set; }
|
||||
}
|
||||
53
DAL/PGModels/原始日志表设计备份1085Log.cs
Normal file
53
DAL/PGModels/原始日志表设计备份1085Log.cs
Normal file
@@ -0,0 +1,53 @@
|
||||
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; }
|
||||
}
|
||||
54
DAL/PGModels/原始日志表设计备份1085Room.cs
Normal file
54
DAL/PGModels/原始日志表设计备份1085Room.cs
Normal file
@@ -0,0 +1,54 @@
|
||||
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; }
|
||||
}
|
||||
58
DAL/PGModels/原始日志表设计备份1085Rooms1.cs
Normal file
58
DAL/PGModels/原始日志表设计备份1085Rooms1.cs
Normal 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; }
|
||||
}
|
||||
Reference in New Issue
Block a user