diff --git a/DAL/PGModels/BlockIplog.cs b/DAL/PGModels/BlockIplog.cs
deleted file mode 100644
index 37711fb..0000000
--- a/DAL/PGModels/BlockIplog.cs
+++ /dev/null
@@ -1,15 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/BlsHotelsList.cs b/DAL/PGModels/BlsHotelsList.cs
deleted file mode 100644
index 80761d3..0000000
--- a/DAL/PGModels/BlsHotelsList.cs
+++ /dev/null
@@ -1,32 +0,0 @@
-using System;
-using System.Collections.Generic;
-
-namespace DAL.PGModels;
-
-public partial class BlsHotelsList
-{
- ///
- /// ID
- ///
- public int Id { get; set; }
-
- ///
- /// 酒店编号
- ///
- public string? HotelCode { get; set; }
-
- ///
- /// 酒店名称
- ///
- public string? HotelName { get; set; }
-
- ///
- /// 创建时间
- ///
- public DateOnly? CreateDate { get; set; }
-
- ///
- /// 房间数
- ///
- public int? Rooms { get; set; }
-}
diff --git a/DAL/PGModels/DevMonitorlog.cs b/DAL/PGModels/DevMonitorlog.cs
deleted file mode 100644
index 5a1d9bc..0000000
--- a/DAL/PGModels/DevMonitorlog.cs
+++ /dev/null
@@ -1,41 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/DevMonitorlogCopy1.cs b/DAL/PGModels/DevMonitorlogCopy1.cs
deleted file mode 100644
index 082807c..0000000
--- a/DAL/PGModels/DevMonitorlogCopy1.cs
+++ /dev/null
@@ -1,41 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/Excelgenerater.cs b/DAL/PGModels/Excelgenerater.cs
deleted file mode 100644
index 95d6aac..0000000
--- a/DAL/PGModels/Excelgenerater.cs
+++ /dev/null
@@ -1,15 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/IotMonitorlog.cs b/DAL/PGModels/IotMonitorlog.cs
deleted file mode 100644
index e94f489..0000000
--- a/DAL/PGModels/IotMonitorlog.cs
+++ /dev/null
@@ -1,27 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/LogFilterRule.cs b/DAL/PGModels/LogFilterRule.cs
deleted file mode 100644
index a7fe3ba..0000000
--- a/DAL/PGModels/LogFilterRule.cs
+++ /dev/null
@@ -1,32 +0,0 @@
-using System;
-using System.Collections.Generic;
-
-namespace DAL.PGModels;
-
-public partial class LogFilterRule
-{
- ///
- /// ID
- ///
- public long Id { get; set; }
-
- ///
- /// 错误类型
- ///
- public string? Type { get; set; }
-
- ///
- /// 时间长度*(s)
- ///
- public int? Time { get; set; }
-
- ///
- /// 规则次数
- ///
- public int? Rule { get; set; }
-
- ///
- /// 规则描述
- ///
- public string? Note { get; set; }
-}
diff --git a/DAL/PGModels/PostgresContext.cs b/DAL/PGModels/PostgresContext.cs
deleted file mode 100644
index 8856381..0000000
--- a/DAL/PGModels/PostgresContext.cs
+++ /dev/null
@@ -1,1198 +0,0 @@
-using System;
-using System.Collections.Generic;
-using Microsoft.EntityFrameworkCore;
-
-namespace DAL.PGModels;
-
-public partial class PostgresContext : DbContext
-{
- public PostgresContext()
- {
- }
-
- public PostgresContext(DbContextOptions options)
- : base(options)
- {
- }
-
- public virtual DbSet BlockIplogs { get; set; }
-
- public virtual DbSet BlsHotelsLists { get; set; }
-
- public virtual DbSet DevMonitorlogs { get; set; }
-
- public virtual DbSet DevMonitorlogCopy1s { get; set; }
-
- public virtual DbSet Excelgeneraters { get; set; }
-
- public virtual DbSet IotMonitorlogs { get; set; }
-
- public virtual DbSet LogFilterRules { get; set; }
-
- public virtual DbSet Qingaos { get; set; }
-
- public virtual DbSet Recordhotels { get; set; }
-
- public virtual DbSet SkyworthTvMonitorlogs { get; set; }
-
- public virtual DbSet StatisticsTotals { get; set; }
-
- public virtual DbSet TclTvMonitorlogs { get; set; }
-
- public virtual DbSet WebapiMonitorlogs { get; set; }
-
- public virtual DbSet<_1091Log> _1091Logs { get; set; }
-
- public virtual DbSet<_1091Room> _1091Rooms { get; set; }
-
- public virtual DbSet<_1091SimplificationLog> _1091SimplificationLogs { get; set; }
-
- public virtual DbSet<_1106Log> _1106Logs { get; set; }
-
- public virtual DbSet<_1106Room> _1106Rooms { get; set; }
-
- public virtual DbSet<_1106SimplificationLog> _1106SimplificationLogs { get; set; }
-
- public virtual DbSet<_1197Log> _1197Logs { get; set; }
-
- public virtual DbSet<_1197Room> _1197Rooms { get; set; }
-
- public virtual DbSet<_1197SimplificationLog> _1197SimplificationLogs { get; set; }
-
- public virtual DbSet<_1399Log> _1399Logs { get; set; }
-
- public virtual DbSet<_1399Room> _1399Rooms { get; set; }
-
- public virtual DbSet<_1399SimplificationLog> _1399SimplificationLogs { get; set; }
-
- public virtual DbSet<_1564Log> _1564Logs { get; set; }
-
- public virtual DbSet<_1564Room> _1564Rooms { get; set; }
-
- public virtual DbSet<_1564SimplificationLog> _1564SimplificationLogs { get; set; }
-
- public virtual DbSet<_1633Log> _1633Logs { get; set; }
-
- public virtual DbSet<_1633Room> _1633Rooms { get; set; }
-
- public virtual DbSet<_1633SimplificationLog> _1633SimplificationLogs { get; set; }
-
- public virtual DbSet<_1760Log> _1760Logs { get; set; }
-
- public virtual DbSet<_1760Room> _1760Rooms { get; set; }
-
- public virtual DbSet<_1760SimplificationLog> _1760SimplificationLogs { get; set; }
-
- public virtual DbSet<_1849Log> _1849Logs { get; set; }
-
- public virtual DbSet<_1849Room> _1849Rooms { get; set; }
-
- public virtual DbSet<_1849SimplificationLog> _1849SimplificationLogs { get; set; }
-
- public virtual DbSet<_2006Log> _2006Logs { get; set; }
-
- public virtual DbSet<_2006Room> _2006Rooms { get; set; }
-
- public virtual DbSet<_2006SimplificationLog> _2006SimplificationLogs { get; set; }
-
- public virtual DbSet<_2013Log> _2013Logs { get; set; }
-
- public virtual DbSet<_2013Room> _2013Rooms { get; set; }
-
- public virtual DbSet<_2013SimplificationLog> _2013SimplificationLogs { get; set; }
-
- public virtual DbSet<_2079Log> _2079Logs { get; set; }
-
- public virtual DbSet<_2079Room> _2079Rooms { get; set; }
-
- public virtual DbSet<_2079SimplificationLog> _2079SimplificationLogs { get; set; }
-
- public virtual DbSet<_2170Log> _2170Logs { get; set; }
-
- public virtual DbSet<_2170Room> _2170Rooms { get; set; }
-
- public virtual DbSet<_2170SimplificationLog> _2170SimplificationLogs { get; set; }
-
- public virtual DbSet<_2209Log> _2209Logs { get; set; }
-
- public virtual DbSet<_2209Room> _2209Rooms { get; set; }
-
- public virtual DbSet<_2209SimplificationLog> _2209SimplificationLogs { get; set; }
-
- public virtual DbSet<原始日志表设计备份1085Log> 原始日志表设计备份1085Logs { get; set; }
-
- public virtual DbSet<原始日志表设计备份1085Room> 原始日志表设计备份1085Rooms { get; set; }
-
- public virtual DbSet<原始日志表设计备份1085Rooms1> 原始日志表设计备份1085Rooms1s { get; set; }
-
-// protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
-//#warning To protect potentially sensitive information in your connection string, you should move it out of source code. You can avoid scaffolding the connection string by using the Name= syntax to read it from configuration - see https://go.microsoft.com/fwlink/?linkid=2131148. For more guidance on storing connection strings, see https://go.microsoft.com/fwlink/?LinkId=723263.
-// => optionsBuilder.UseNpgsql("Server=10.8.8.212;Database=postgres;user id=postgres;password=123456;port=16035;");
-
- protected override void OnModelCreating(ModelBuilder modelBuilder)
- {
- modelBuilder.Entity(entity =>
- {
- entity.HasKey(e => e.Id).HasName("BlockIPLog_pkey");
-
- entity.ToTable("BlockIPLog");
-
- entity.Property(e => e.Id).HasColumnName("ID");
- entity.Property(e => e.CreateTime).HasColumnType("timestamp without time zone");
- entity.Property(e => e.Human).HasMaxLength(255);
- });
-
- modelBuilder.Entity(entity =>
- {
- entity.HasKey(e => e.Id).HasName("BLS_Hotels_List_pkey");
-
- entity.ToTable("BLS_Hotels_List");
-
- entity.Property(e => e.Id)
- .HasComment("ID")
- .HasColumnName("ID");
- entity.Property(e => e.CreateDate).HasComment("创建时间");
- entity.Property(e => e.HotelCode)
- .HasMaxLength(255)
- .HasComment("酒店编号");
- entity.Property(e => e.HotelName)
- .HasMaxLength(255)
- .HasComment("酒店名称");
- entity.Property(e => e.Rooms).HasComment("房间数");
- });
-
- modelBuilder.Entity(entity =>
- {
- entity.HasKey(e => e.Id).HasName("dev_monitorlog_pkey");
-
- entity.ToTable("dev_monitorlog");
-
- entity.HasIndex(e => e.CommandType, "CommandType");
-
- entity.HasIndex(e => e.CreateTimeToUnixTime, "CreateTime").IsDescending();
-
- entity.HasIndex(e => e.Id, "ID").IsUnique();
-
- entity.HasIndex(e => new { e.HotelCode, e.HostNumber, e.HostId, e.RoomNo }, "MAC");
-
- entity.HasIndex(e => e.Mac, "MM");
-
- entity.HasIndex(e => e.CreateTime, "T");
-
- entity.Property(e => e.Id).HasColumnName("ID");
- entity.Property(e => e.CommandType).HasMaxLength(128);
- entity.Property(e => e.CreateTime).HasColumnType("timestamp(6) without time zone");
- entity.Property(e => e.HostId).HasColumnName("HostID");
- entity.Property(e => e.HostNumber).HasMaxLength(64);
- entity.Property(e => e.HotelCode).HasMaxLength(64);
- entity.Property(e => e.HotelId).HasColumnName("HotelID");
- entity.Property(e => e.LanIp)
- .HasMaxLength(64)
- .HasColumnName("LanIP");
- entity.Property(e => e.Mac)
- .HasMaxLength(64)
- .HasColumnName("MAC");
- entity.Property(e => e.RoomNo).HasMaxLength(64);
- entity.Property(e => e.SendOrReceive).HasMaxLength(64);
- entity.Property(e => e.WwwIp)
- .HasMaxLength(64)
- .HasColumnName("WWW_IP");
- entity.Property(e => e.WwwPort).HasColumnName("WWW_Port");
- });
-
- modelBuilder.Entity(entity =>
- {
- entity
- .HasNoKey()
- .ToTable("dev_monitorlog_copy1");
-
- entity.HasIndex(e => e.CommandType, "CommandType_copy1");
-
- entity.HasIndex(e => e.CreateTimeToUnixTime, "CreateTime_copy1").IsDescending();
-
- entity.HasIndex(e => new { e.HotelCode, e.HostNumber, e.HostId, e.RoomNo }, "MAC_copy1");
-
- entity.HasIndex(e => e.Mac, "MM_copy1");
-
- entity.HasIndex(e => e.CreateTime, "T_copy1");
-
- entity.Property(e => e.CommandType).HasMaxLength(128);
- entity.Property(e => e.CreateTime).HasColumnType("timestamp(6) without time zone");
- entity.Property(e => e.HostId).HasColumnName("HostID");
- entity.Property(e => e.HostNumber).HasMaxLength(64);
- entity.Property(e => e.HotelCode).HasMaxLength(64);
- entity.Property(e => e.HotelId).HasColumnName("HotelID");
- entity.Property(e => e.Id)
- .ValueGeneratedOnAdd()
- .HasColumnName("ID");
- entity.Property(e => e.LanIp)
- .HasMaxLength(64)
- .HasColumnName("LanIP");
- entity.Property(e => e.Mac)
- .HasMaxLength(64)
- .HasColumnName("MAC");
- entity.Property(e => e.RoomNo).HasMaxLength(64);
- entity.Property(e => e.SendOrReceive).HasMaxLength(64);
- entity.Property(e => e.WwwIp)
- .HasMaxLength(64)
- .HasColumnName("WWW_IP");
- entity.Property(e => e.WwwPort).HasColumnName("WWW_Port");
- });
-
- modelBuilder.Entity(entity =>
- {
- entity.HasKey(e => e.Id).HasName("excelgenerater_pkey");
-
- entity.ToTable("excelgenerater");
-
- entity.Property(e => e.Id).HasColumnName("ID");
- entity.Property(e => e.CreateTime).HasColumnType("timestamp(6) without time zone");
- entity.Property(e => e.CreateTimeUnix).HasColumnName("CreateTime_UNIX");
- });
-
- modelBuilder.Entity(entity =>
- {
- entity.HasKey(e => e.Id).HasName("iot_monitorlog_pkey");
-
- entity.ToTable("iot_monitorlog");
-
- entity.Property(e => e.Id).HasColumnName("ID");
- entity.Property(e => e.HotelCode).HasMaxLength(255);
- entity.Property(e => e.HotelName).HasMaxLength(255);
- entity.Property(e => e.Platform).HasMaxLength(128);
- entity.Property(e => e.RequestId).HasMaxLength(512);
- entity.Property(e => e.RoomNumber).HasMaxLength(255);
- entity.Property(e => e.TriggerTime).HasMaxLength(64);
- });
-
- modelBuilder.Entity(entity =>
- {
- entity.HasKey(e => e.Id).HasName("Log_Filter_Rule_pkey");
-
- entity.ToTable("Log_Filter_Rule");
-
- entity.Property(e => e.Id).HasComment("ID");
- entity.Property(e => e.Note)
- .HasMaxLength(255)
- .HasComment("规则描述");
- entity.Property(e => e.Rule).HasComment("规则次数");
- entity.Property(e => e.Time).HasComment("时间长度*(s)");
- entity.Property(e => e.Type)
- .HasMaxLength(255)
- .HasComment("错误类型");
- });
-
- modelBuilder.Entity(entity =>
- {
- entity.HasKey(e => e.Id).HasName("Qingao_pkey");
-
- entity.ToTable("Qingao");
-
- entity.Property(e => e.Id).HasIdentityOptions(null, null, null, null, true, null);
- entity.Property(e => e.CurrentTime).HasColumnType("timestamp without time zone");
- entity.Property(e => e.HotelCode).HasMaxLength(32);
- entity.Property(e => e.RoomNumber).HasMaxLength(64);
- entity.Property(e => e.TakeCardStatus).HasMaxLength(64);
- });
-
- modelBuilder.Entity(entity =>
- {
- entity.HasKey(e => e.Id).HasName("recordhotel_pkey");
-
- entity.ToTable("recordhotel");
-
- entity.Property(e => e.Id).HasColumnName("ID");
- entity.Property(e => e.CreateTime).HasMaxLength(64);
- entity.Property(e => e.HotelId).HasColumnName("HotelID");
- });
-
- modelBuilder.Entity(entity =>
- {
- entity.HasKey(e => e.Id).HasName("skyworth_tv_monitorlog_pkey");
-
- entity.ToTable("skyworth_tv_monitorlog");
-
- entity.Property(e => e.Id).HasColumnName("ID");
- entity.Property(e => e.HotelCode).HasMaxLength(64);
- entity.Property(e => e.RequestId).HasMaxLength(64);
- entity.Property(e => e.RequestTime).HasColumnType("timestamp without time zone");
- entity.Property(e => e.ResponseTime).HasColumnType("timestamp without time zone");
- entity.Property(e => e.RoomNum).HasMaxLength(64);
- entity.Property(e => e.Step).HasMaxLength(16);
- });
-
- modelBuilder.Entity(entity =>
- {
- entity.HasKey(e => e.Id).HasName("statistics_total_pkey");
-
- entity.ToTable("statistics_total");
-
- entity.Property(e => e.Id).HasColumnName("ID");
- entity.Property(e => e.HostNumber).HasMaxLength(64);
- entity.Property(e => e.HotelCode).HasMaxLength(64);
- entity.Property(e => e.Mac)
- .HasMaxLength(64)
- .HasColumnName("MAC");
- entity.Property(e => e.RxCount).HasColumnName("RX_Count");
- entity.Property(e => e.TxCount).HasColumnName("TX_Count");
- entity.Property(e => e.UpdateTime)
- .HasMaxLength(64)
- .HasColumnName("Update_Time");
- });
-
- modelBuilder.Entity(entity =>
- {
- entity.HasKey(e => e.Id).HasName("tcl_tv_monitorlog_pkey");
-
- entity.ToTable("tcl_tv_monitorlog");
-
- entity.Property(e => e.Id).HasColumnName("ID");
- entity.Property(e => e.HotelCode).HasMaxLength(64);
- entity.Property(e => e.RequestId).HasMaxLength(64);
- entity.Property(e => e.RequestTime).HasColumnType("timestamp without time zone");
- entity.Property(e => e.ResponseTime).HasColumnType("timestamp without time zone");
- entity.Property(e => e.RoomNumber).HasMaxLength(64);
- entity.Property(e => e.Step)
- .HasMaxLength(16)
- .HasDefaultValueSql("NULL::character varying");
- });
-
- modelBuilder.Entity(entity =>
- {
- entity.HasKey(e => e.Id).HasName("webapi_monitorlog_pkey");
-
- entity.ToTable("webapi_monitorlog");
-
- entity.HasIndex(e => e.MethodName, "MethodName");
-
- entity.HasIndex(e => new { e.InvokStartTime, e.InvokEndTime }, "Time");
-
- entity.Property(e => e.Id).HasColumnName("ID");
- entity.Property(e => e.HotelCode).HasMaxLength(64);
- entity.Property(e => e.InvokEndTime)
- .HasMaxLength(64)
- .HasColumnName("InvokEnd_Time");
- entity.Property(e => e.InvokStartTime)
- .HasMaxLength(64)
- .HasColumnName("InvokStart_Time");
- entity.Property(e => e.MethodName).HasMaxLength(128);
- entity.Property(e => e.RemoteIp)
- .HasMaxLength(64)
- .HasColumnName("RemoteIP");
- entity.Property(e => e.RoomNumber).HasMaxLength(64);
- });
-
- modelBuilder.Entity<_1091Log>(entity =>
- {
- entity.HasKey(e => e.Id).HasName("1091_Logs_pkey");
-
- entity.ToTable("1091_Logs");
-
- entity.Property(e => e.Id).HasColumnName("ID");
- entity.Property(e => e.Address).HasMaxLength(255);
- entity.Property(e => e.DeviceName).HasMaxLength(255);
- entity.Property(e => e.Execute001).HasColumnName("Execute_001");
- entity.Property(e => e.Execute002).HasColumnName("Execute_002");
- entity.Property(e => e.Execute003).HasColumnName("Execute_003");
- entity.Property(e => e.Execute004).HasColumnName("Execute_004");
- entity.Property(e => e.Execute005).HasColumnName("Execute_005");
- entity.Property(e => e.Execute006).HasColumnName("Execute_006");
- entity.Property(e => e.Execute007).HasColumnName("Execute_007");
- entity.Property(e => e.Execute008).HasColumnName("Execute_008");
- entity.Property(e => e.Room).HasMaxLength(255);
- });
-
- modelBuilder.Entity<_1091Room>(entity =>
- {
- entity.HasKey(e => e.Id).HasName("1091_Rooms_pkey");
-
- entity.ToTable("1091_Rooms");
-
- entity.Property(e => e.Id).HasColumnName("ID");
- entity.Property(e => e.ExecuteId).HasColumnName("ExecuteID");
- entity.Property(e => e.JudgTimeStr).HasMaxLength(150);
- entity.Property(e => e.LoopAddr).HasMaxLength(32);
- entity.Property(e => e.LoopName).HasMaxLength(255);
- entity.Property(e => e.Room).HasMaxLength(255);
- entity.Property(e => e.StartId).HasColumnName("StartID");
- entity.Property(e => e.StopId).HasColumnName("StopID");
- });
-
- modelBuilder.Entity<_1091SimplificationLog>(entity =>
- {
- entity.HasKey(e => e.Id).HasName("1091_SimplificationLogs_pkey");
-
- entity.ToTable("1091_SimplificationLogs");
-
- entity.Property(e => e.Id).HasColumnName("ID");
- entity.Property(e => e.Address).HasMaxLength(255);
- entity.Property(e => e.DeviceName).HasMaxLength(255);
- entity.Property(e => e.Execute001).HasColumnName("Execute_001");
- entity.Property(e => e.Execute002).HasColumnName("Execute_002");
- entity.Property(e => e.Execute003).HasColumnName("Execute_003");
- entity.Property(e => e.Execute004).HasColumnName("Execute_004");
- entity.Property(e => e.Execute005).HasColumnName("Execute_005");
- entity.Property(e => e.Execute006).HasColumnName("Execute_006");
- entity.Property(e => e.Execute007).HasColumnName("Execute_007");
- entity.Property(e => e.Execute008).HasColumnName("Execute_008");
- entity.Property(e => e.Room).HasMaxLength(255);
- });
-
- modelBuilder.Entity<_1106Log>(entity =>
- {
- entity.HasKey(e => e.Id).HasName("1106_Logs_pkey");
-
- entity.ToTable("1106_Logs");
-
- entity.Property(e => e.Id).HasColumnName("ID");
- entity.Property(e => e.Address).HasMaxLength(255);
- entity.Property(e => e.DeviceName).HasMaxLength(255);
- entity.Property(e => e.Execute001).HasColumnName("Execute_001");
- entity.Property(e => e.Execute002).HasColumnName("Execute_002");
- entity.Property(e => e.Execute003).HasColumnName("Execute_003");
- entity.Property(e => e.Execute004).HasColumnName("Execute_004");
- entity.Property(e => e.Execute005).HasColumnName("Execute_005");
- entity.Property(e => e.Execute006).HasColumnName("Execute_006");
- entity.Property(e => e.Execute007).HasColumnName("Execute_007");
- entity.Property(e => e.Execute008).HasColumnName("Execute_008");
- entity.Property(e => e.Room).HasMaxLength(255);
- });
-
- modelBuilder.Entity<_1106Room>(entity =>
- {
- entity.HasKey(e => e.Id).HasName("1106_Rooms_pkey");
-
- entity.ToTable("1106_Rooms");
-
- entity.Property(e => e.Id).HasColumnName("ID");
- entity.Property(e => e.ExecuteId).HasColumnName("ExecuteID");
- entity.Property(e => e.JudgTimeStr).HasMaxLength(150);
- entity.Property(e => e.LoopAddr).HasMaxLength(32);
- entity.Property(e => e.LoopName).HasMaxLength(255);
- entity.Property(e => e.Room).HasMaxLength(255);
- entity.Property(e => e.StartId).HasColumnName("StartID");
- entity.Property(e => e.StopId).HasColumnName("StopID");
- });
-
- modelBuilder.Entity<_1106SimplificationLog>(entity =>
- {
- entity.HasKey(e => e.Id).HasName("1106_SimplificationLogs_pkey");
-
- entity.ToTable("1106_SimplificationLogs");
-
- entity.Property(e => e.Id).HasColumnName("ID");
- entity.Property(e => e.Address).HasMaxLength(255);
- entity.Property(e => e.DeviceName).HasMaxLength(255);
- entity.Property(e => e.Execute001).HasColumnName("Execute_001");
- entity.Property(e => e.Execute002).HasColumnName("Execute_002");
- entity.Property(e => e.Execute003).HasColumnName("Execute_003");
- entity.Property(e => e.Execute004).HasColumnName("Execute_004");
- entity.Property(e => e.Execute005).HasColumnName("Execute_005");
- entity.Property(e => e.Execute006).HasColumnName("Execute_006");
- entity.Property(e => e.Execute007).HasColumnName("Execute_007");
- entity.Property(e => e.Execute008).HasColumnName("Execute_008");
- entity.Property(e => e.Room).HasMaxLength(255);
- });
-
- modelBuilder.Entity<_1197Log>(entity =>
- {
- entity.HasKey(e => e.Id).HasName("1197_Logs_pkey");
-
- entity.ToTable("1197_Logs");
-
- entity.Property(e => e.Id).HasColumnName("ID");
- entity.Property(e => e.Address).HasMaxLength(255);
- entity.Property(e => e.DeviceName).HasMaxLength(255);
- entity.Property(e => e.Execute001).HasColumnName("Execute_001");
- entity.Property(e => e.Execute002).HasColumnName("Execute_002");
- entity.Property(e => e.Execute003).HasColumnName("Execute_003");
- entity.Property(e => e.Execute004).HasColumnName("Execute_004");
- entity.Property(e => e.Execute005).HasColumnName("Execute_005");
- entity.Property(e => e.Execute006).HasColumnName("Execute_006");
- entity.Property(e => e.Execute007).HasColumnName("Execute_007");
- entity.Property(e => e.Execute008).HasColumnName("Execute_008");
- entity.Property(e => e.Room).HasMaxLength(255);
- });
-
- modelBuilder.Entity<_1197Room>(entity =>
- {
- entity.HasKey(e => e.Id).HasName("1197_Rooms_pkey");
-
- entity.ToTable("1197_Rooms");
-
- entity.Property(e => e.Id).HasColumnName("ID");
- entity.Property(e => e.ExecuteId).HasColumnName("ExecuteID");
- entity.Property(e => e.JudgTimeStr).HasMaxLength(150);
- entity.Property(e => e.LoopAddr).HasMaxLength(32);
- entity.Property(e => e.LoopName).HasMaxLength(255);
- entity.Property(e => e.Room).HasMaxLength(255);
- entity.Property(e => e.StartId).HasColumnName("StartID");
- entity.Property(e => e.StopId).HasColumnName("StopID");
- });
-
- modelBuilder.Entity<_1197SimplificationLog>(entity =>
- {
- entity.HasKey(e => e.Id).HasName("1197_SimplificationLogs_pkey");
-
- entity.ToTable("1197_SimplificationLogs");
-
- entity.Property(e => e.Id).HasColumnName("ID");
- entity.Property(e => e.Address).HasMaxLength(255);
- entity.Property(e => e.DeviceName).HasMaxLength(255);
- entity.Property(e => e.Execute001).HasColumnName("Execute_001");
- entity.Property(e => e.Execute002).HasColumnName("Execute_002");
- entity.Property(e => e.Execute003).HasColumnName("Execute_003");
- entity.Property(e => e.Execute004).HasColumnName("Execute_004");
- entity.Property(e => e.Execute005).HasColumnName("Execute_005");
- entity.Property(e => e.Execute006).HasColumnName("Execute_006");
- entity.Property(e => e.Execute007).HasColumnName("Execute_007");
- entity.Property(e => e.Execute008).HasColumnName("Execute_008");
- entity.Property(e => e.Room).HasMaxLength(255);
- });
-
- modelBuilder.Entity<_1399Log>(entity =>
- {
- entity.HasKey(e => e.Id).HasName("1399_Logs_pkey");
-
- entity.ToTable("1399_Logs");
-
- entity.Property(e => e.Id).HasColumnName("ID");
- entity.Property(e => e.Address).HasMaxLength(255);
- entity.Property(e => e.DeviceName).HasMaxLength(255);
- entity.Property(e => e.Execute001).HasColumnName("Execute_001");
- entity.Property(e => e.Execute002).HasColumnName("Execute_002");
- entity.Property(e => e.Execute003).HasColumnName("Execute_003");
- entity.Property(e => e.Execute004).HasColumnName("Execute_004");
- entity.Property(e => e.Execute005).HasColumnName("Execute_005");
- entity.Property(e => e.Execute006).HasColumnName("Execute_006");
- entity.Property(e => e.Execute007).HasColumnName("Execute_007");
- entity.Property(e => e.Execute008).HasColumnName("Execute_008");
- entity.Property(e => e.Room).HasMaxLength(255);
- });
-
- modelBuilder.Entity<_1399Room>(entity =>
- {
- entity.HasKey(e => e.Id).HasName("1399_Rooms_pkey");
-
- entity.ToTable("1399_Rooms");
-
- entity.Property(e => e.Id).HasColumnName("ID");
- entity.Property(e => e.ExecuteId).HasColumnName("ExecuteID");
- entity.Property(e => e.JudgTimeStr).HasMaxLength(150);
- entity.Property(e => e.LoopAddr).HasMaxLength(32);
- entity.Property(e => e.LoopName).HasMaxLength(255);
- entity.Property(e => e.Room).HasMaxLength(255);
- entity.Property(e => e.StartId).HasColumnName("StartID");
- entity.Property(e => e.StopId).HasColumnName("StopID");
- });
-
- modelBuilder.Entity<_1399SimplificationLog>(entity =>
- {
- entity.HasKey(e => e.Id).HasName("1399_SimplificationLogs_pkey");
-
- entity.ToTable("1399_SimplificationLogs");
-
- entity.Property(e => e.Id).HasColumnName("ID");
- entity.Property(e => e.Address).HasMaxLength(255);
- entity.Property(e => e.DeviceName).HasMaxLength(255);
- entity.Property(e => e.Execute001).HasColumnName("Execute_001");
- entity.Property(e => e.Execute002).HasColumnName("Execute_002");
- entity.Property(e => e.Execute003).HasColumnName("Execute_003");
- entity.Property(e => e.Execute004).HasColumnName("Execute_004");
- entity.Property(e => e.Execute005).HasColumnName("Execute_005");
- entity.Property(e => e.Execute006).HasColumnName("Execute_006");
- entity.Property(e => e.Execute007).HasColumnName("Execute_007");
- entity.Property(e => e.Execute008).HasColumnName("Execute_008");
- entity.Property(e => e.Room).HasMaxLength(255);
- });
-
- modelBuilder.Entity<_1564Log>(entity =>
- {
- entity.HasKey(e => e.Id).HasName("1564_Logs_pkey");
-
- entity.ToTable("1564_Logs");
-
- entity.Property(e => e.Id).HasColumnName("ID");
- entity.Property(e => e.Address).HasMaxLength(255);
- entity.Property(e => e.DeviceName).HasMaxLength(255);
- entity.Property(e => e.Execute001).HasColumnName("Execute_001");
- entity.Property(e => e.Execute002).HasColumnName("Execute_002");
- entity.Property(e => e.Execute003).HasColumnName("Execute_003");
- entity.Property(e => e.Execute004).HasColumnName("Execute_004");
- entity.Property(e => e.Execute005).HasColumnName("Execute_005");
- entity.Property(e => e.Execute006).HasColumnName("Execute_006");
- entity.Property(e => e.Execute007).HasColumnName("Execute_007");
- entity.Property(e => e.Execute008).HasColumnName("Execute_008");
- entity.Property(e => e.Room).HasMaxLength(255);
- });
-
- modelBuilder.Entity<_1564Room>(entity =>
- {
- entity.HasKey(e => e.Id).HasName("1564_Rooms_pkey");
-
- entity.ToTable("1564_Rooms");
-
- entity.Property(e => e.Id).HasColumnName("ID");
- entity.Property(e => e.ExecuteId).HasColumnName("ExecuteID");
- entity.Property(e => e.JudgTimeStr).HasMaxLength(150);
- entity.Property(e => e.LoopAddr).HasMaxLength(32);
- entity.Property(e => e.LoopName).HasMaxLength(255);
- entity.Property(e => e.Room).HasMaxLength(255);
- entity.Property(e => e.StartId).HasColumnName("StartID");
- entity.Property(e => e.StopId).HasColumnName("StopID");
- });
-
- modelBuilder.Entity<_1564SimplificationLog>(entity =>
- {
- entity.HasKey(e => e.Id).HasName("1564_SimplificationLogs_pkey");
-
- entity.ToTable("1564_SimplificationLogs");
-
- entity.Property(e => e.Id).HasColumnName("ID");
- entity.Property(e => e.Address).HasMaxLength(255);
- entity.Property(e => e.DeviceName).HasMaxLength(255);
- entity.Property(e => e.Execute001).HasColumnName("Execute_001");
- entity.Property(e => e.Execute002).HasColumnName("Execute_002");
- entity.Property(e => e.Execute003).HasColumnName("Execute_003");
- entity.Property(e => e.Execute004).HasColumnName("Execute_004");
- entity.Property(e => e.Execute005).HasColumnName("Execute_005");
- entity.Property(e => e.Execute006).HasColumnName("Execute_006");
- entity.Property(e => e.Execute007).HasColumnName("Execute_007");
- entity.Property(e => e.Execute008).HasColumnName("Execute_008");
- entity.Property(e => e.Room).HasMaxLength(255);
- });
-
- modelBuilder.Entity<_1633Log>(entity =>
- {
- entity.HasKey(e => e.Id).HasName("1633_Logs_pkey");
-
- entity.ToTable("1633_Logs");
-
- entity.Property(e => e.Id).HasColumnName("ID");
- entity.Property(e => e.Address).HasMaxLength(255);
- entity.Property(e => e.DeviceName).HasMaxLength(255);
- entity.Property(e => e.Execute001).HasColumnName("Execute_001");
- entity.Property(e => e.Execute002).HasColumnName("Execute_002");
- entity.Property(e => e.Execute003).HasColumnName("Execute_003");
- entity.Property(e => e.Execute004).HasColumnName("Execute_004");
- entity.Property(e => e.Execute005).HasColumnName("Execute_005");
- entity.Property(e => e.Execute006).HasColumnName("Execute_006");
- entity.Property(e => e.Execute007).HasColumnName("Execute_007");
- entity.Property(e => e.Execute008).HasColumnName("Execute_008");
- entity.Property(e => e.Room).HasMaxLength(255);
- });
-
- modelBuilder.Entity<_1633Room>(entity =>
- {
- entity.HasKey(e => e.Id).HasName("1633_Rooms_pkey");
-
- entity.ToTable("1633_Rooms");
-
- entity.Property(e => e.Id).HasColumnName("ID");
- entity.Property(e => e.ExecuteId).HasColumnName("ExecuteID");
- entity.Property(e => e.JudgTimeStr).HasMaxLength(150);
- entity.Property(e => e.LoopAddr).HasMaxLength(32);
- entity.Property(e => e.LoopName).HasMaxLength(255);
- entity.Property(e => e.Room).HasMaxLength(255);
- entity.Property(e => e.StartId).HasColumnName("StartID");
- entity.Property(e => e.StopId).HasColumnName("StopID");
- });
-
- modelBuilder.Entity<_1633SimplificationLog>(entity =>
- {
- entity.HasKey(e => e.Id).HasName("1633_SimplificationLogs_pkey");
-
- entity.ToTable("1633_SimplificationLogs");
-
- entity.Property(e => e.Id).HasColumnName("ID");
- entity.Property(e => e.Address).HasMaxLength(255);
- entity.Property(e => e.DeviceName).HasMaxLength(255);
- entity.Property(e => e.Execute001).HasColumnName("Execute_001");
- entity.Property(e => e.Execute002).HasColumnName("Execute_002");
- entity.Property(e => e.Execute003).HasColumnName("Execute_003");
- entity.Property(e => e.Execute004).HasColumnName("Execute_004");
- entity.Property(e => e.Execute005).HasColumnName("Execute_005");
- entity.Property(e => e.Execute006).HasColumnName("Execute_006");
- entity.Property(e => e.Execute007).HasColumnName("Execute_007");
- entity.Property(e => e.Execute008).HasColumnName("Execute_008");
- entity.Property(e => e.Room).HasMaxLength(255);
- });
-
- modelBuilder.Entity<_1760Log>(entity =>
- {
- entity.HasKey(e => e.Id).HasName("1760_Logs_pkey");
-
- entity.ToTable("1760_Logs");
-
- entity.Property(e => e.Id).HasColumnName("ID");
- entity.Property(e => e.Address).HasMaxLength(255);
- entity.Property(e => e.DeviceName).HasMaxLength(255);
- entity.Property(e => e.Execute001).HasColumnName("Execute_001");
- entity.Property(e => e.Execute002).HasColumnName("Execute_002");
- entity.Property(e => e.Execute003).HasColumnName("Execute_003");
- entity.Property(e => e.Execute004).HasColumnName("Execute_004");
- entity.Property(e => e.Execute005).HasColumnName("Execute_005");
- entity.Property(e => e.Execute006).HasColumnName("Execute_006");
- entity.Property(e => e.Execute007).HasColumnName("Execute_007");
- entity.Property(e => e.Execute008).HasColumnName("Execute_008");
- entity.Property(e => e.Room).HasMaxLength(255);
- });
-
- modelBuilder.Entity<_1760Room>(entity =>
- {
- entity.HasKey(e => e.Id).HasName("1760_Rooms_pkey");
-
- entity.ToTable("1760_Rooms");
-
- entity.Property(e => e.Id).HasColumnName("ID");
- entity.Property(e => e.ExecuteId).HasColumnName("ExecuteID");
- entity.Property(e => e.JudgTimeStr).HasMaxLength(150);
- entity.Property(e => e.LoopAddr).HasMaxLength(32);
- entity.Property(e => e.LoopName).HasMaxLength(255);
- entity.Property(e => e.Room).HasMaxLength(255);
- entity.Property(e => e.StartId).HasColumnName("StartID");
- entity.Property(e => e.StopId).HasColumnName("StopID");
- });
-
- modelBuilder.Entity<_1760SimplificationLog>(entity =>
- {
- entity.HasKey(e => e.Id).HasName("1760_SimplificationLogs_pkey");
-
- entity.ToTable("1760_SimplificationLogs");
-
- entity.Property(e => e.Id).HasColumnName("ID");
- entity.Property(e => e.Address).HasMaxLength(255);
- entity.Property(e => e.DeviceName).HasMaxLength(255);
- entity.Property(e => e.Execute001).HasColumnName("Execute_001");
- entity.Property(e => e.Execute002).HasColumnName("Execute_002");
- entity.Property(e => e.Execute003).HasColumnName("Execute_003");
- entity.Property(e => e.Execute004).HasColumnName("Execute_004");
- entity.Property(e => e.Execute005).HasColumnName("Execute_005");
- entity.Property(e => e.Execute006).HasColumnName("Execute_006");
- entity.Property(e => e.Execute007).HasColumnName("Execute_007");
- entity.Property(e => e.Execute008).HasColumnName("Execute_008");
- entity.Property(e => e.Room).HasMaxLength(255);
- });
-
- modelBuilder.Entity<_1849Log>(entity =>
- {
- entity.HasKey(e => e.Id).HasName("1849_Logs_pkey");
-
- entity.ToTable("1849_Logs");
-
- entity.Property(e => e.Id).HasColumnName("ID");
- entity.Property(e => e.Address).HasMaxLength(255);
- entity.Property(e => e.DeviceName).HasMaxLength(255);
- entity.Property(e => e.Execute001).HasColumnName("Execute_001");
- entity.Property(e => e.Execute002).HasColumnName("Execute_002");
- entity.Property(e => e.Execute003).HasColumnName("Execute_003");
- entity.Property(e => e.Execute004).HasColumnName("Execute_004");
- entity.Property(e => e.Execute005).HasColumnName("Execute_005");
- entity.Property(e => e.Execute006).HasColumnName("Execute_006");
- entity.Property(e => e.Execute007).HasColumnName("Execute_007");
- entity.Property(e => e.Execute008).HasColumnName("Execute_008");
- entity.Property(e => e.Room).HasMaxLength(255);
- });
-
- modelBuilder.Entity<_1849Room>(entity =>
- {
- entity.HasKey(e => e.Id).HasName("1849_Rooms_pkey");
-
- entity.ToTable("1849_Rooms");
-
- entity.Property(e => e.Id).HasColumnName("ID");
- entity.Property(e => e.ExecuteId).HasColumnName("ExecuteID");
- entity.Property(e => e.JudgTimeStr).HasMaxLength(150);
- entity.Property(e => e.LoopAddr).HasMaxLength(32);
- entity.Property(e => e.LoopName).HasMaxLength(255);
- entity.Property(e => e.Room).HasMaxLength(255);
- entity.Property(e => e.StartId).HasColumnName("StartID");
- entity.Property(e => e.StopId).HasColumnName("StopID");
- });
-
- modelBuilder.Entity<_1849SimplificationLog>(entity =>
- {
- entity.HasKey(e => e.Id).HasName("1849_SimplificationLogs_pkey");
-
- entity.ToTable("1849_SimplificationLogs");
-
- entity.Property(e => e.Id).HasColumnName("ID");
- entity.Property(e => e.Address).HasMaxLength(255);
- entity.Property(e => e.DeviceName).HasMaxLength(255);
- entity.Property(e => e.Execute001).HasColumnName("Execute_001");
- entity.Property(e => e.Execute002).HasColumnName("Execute_002");
- entity.Property(e => e.Execute003).HasColumnName("Execute_003");
- entity.Property(e => e.Execute004).HasColumnName("Execute_004");
- entity.Property(e => e.Execute005).HasColumnName("Execute_005");
- entity.Property(e => e.Execute006).HasColumnName("Execute_006");
- entity.Property(e => e.Execute007).HasColumnName("Execute_007");
- entity.Property(e => e.Execute008).HasColumnName("Execute_008");
- entity.Property(e => e.Room).HasMaxLength(255);
- });
-
- modelBuilder.Entity<_2006Log>(entity =>
- {
- entity.HasKey(e => e.Id).HasName("2006_Logs_pkey");
-
- entity.ToTable("2006_Logs");
-
- entity.Property(e => e.Id).HasColumnName("ID");
- entity.Property(e => e.Address).HasMaxLength(255);
- entity.Property(e => e.DeviceName).HasMaxLength(255);
- entity.Property(e => e.Execute001).HasColumnName("Execute_001");
- entity.Property(e => e.Execute002).HasColumnName("Execute_002");
- entity.Property(e => e.Execute003).HasColumnName("Execute_003");
- entity.Property(e => e.Execute004).HasColumnName("Execute_004");
- entity.Property(e => e.Execute005).HasColumnName("Execute_005");
- entity.Property(e => e.Execute006).HasColumnName("Execute_006");
- entity.Property(e => e.Execute007).HasColumnName("Execute_007");
- entity.Property(e => e.Execute008).HasColumnName("Execute_008");
- entity.Property(e => e.Room).HasMaxLength(255);
- });
-
- modelBuilder.Entity<_2006Room>(entity =>
- {
- entity.HasKey(e => e.Id).HasName("2006_Rooms_pkey");
-
- entity.ToTable("2006_Rooms");
-
- entity.Property(e => e.Id).HasColumnName("ID");
- entity.Property(e => e.ExecuteId).HasColumnName("ExecuteID");
- entity.Property(e => e.JudgTimeStr).HasMaxLength(150);
- entity.Property(e => e.LoopAddr).HasMaxLength(32);
- entity.Property(e => e.LoopName).HasMaxLength(255);
- entity.Property(e => e.Room).HasMaxLength(255);
- entity.Property(e => e.StartId).HasColumnName("StartID");
- entity.Property(e => e.StopId).HasColumnName("StopID");
- });
-
- modelBuilder.Entity<_2006SimplificationLog>(entity =>
- {
- entity.HasKey(e => e.Id).HasName("2006_SimplificationLogs_pkey");
-
- entity.ToTable("2006_SimplificationLogs");
-
- entity.Property(e => e.Id).HasColumnName("ID");
- entity.Property(e => e.Address).HasMaxLength(255);
- entity.Property(e => e.DeviceName).HasMaxLength(255);
- entity.Property(e => e.Execute001).HasColumnName("Execute_001");
- entity.Property(e => e.Execute002).HasColumnName("Execute_002");
- entity.Property(e => e.Execute003).HasColumnName("Execute_003");
- entity.Property(e => e.Execute004).HasColumnName("Execute_004");
- entity.Property(e => e.Execute005).HasColumnName("Execute_005");
- entity.Property(e => e.Execute006).HasColumnName("Execute_006");
- entity.Property(e => e.Execute007).HasColumnName("Execute_007");
- entity.Property(e => e.Execute008).HasColumnName("Execute_008");
- entity.Property(e => e.Room).HasMaxLength(255);
- });
-
- modelBuilder.Entity<_2013Log>(entity =>
- {
- entity.HasKey(e => e.Id).HasName("2013_Logs_pkey");
-
- entity.ToTable("2013_Logs");
-
- entity.Property(e => e.Id).HasColumnName("ID");
- entity.Property(e => e.Address).HasMaxLength(255);
- entity.Property(e => e.DeviceName).HasMaxLength(255);
- entity.Property(e => e.Execute001).HasColumnName("Execute_001");
- entity.Property(e => e.Execute002).HasColumnName("Execute_002");
- entity.Property(e => e.Execute003).HasColumnName("Execute_003");
- entity.Property(e => e.Execute004).HasColumnName("Execute_004");
- entity.Property(e => e.Execute005).HasColumnName("Execute_005");
- entity.Property(e => e.Execute006).HasColumnName("Execute_006");
- entity.Property(e => e.Execute007).HasColumnName("Execute_007");
- entity.Property(e => e.Execute008).HasColumnName("Execute_008");
- entity.Property(e => e.Room).HasMaxLength(255);
- });
-
- modelBuilder.Entity<_2013Room>(entity =>
- {
- entity.HasKey(e => e.Id).HasName("2013_Rooms_pkey");
-
- entity.ToTable("2013_Rooms");
-
- entity.Property(e => e.Id).HasColumnName("ID");
- entity.Property(e => e.ExecuteId).HasColumnName("ExecuteID");
- entity.Property(e => e.JudgTimeStr).HasMaxLength(150);
- entity.Property(e => e.LoopAddr).HasMaxLength(32);
- entity.Property(e => e.LoopName).HasMaxLength(255);
- entity.Property(e => e.Room).HasMaxLength(255);
- entity.Property(e => e.StartId).HasColumnName("StartID");
- entity.Property(e => e.StopId).HasColumnName("StopID");
- });
-
- modelBuilder.Entity<_2013SimplificationLog>(entity =>
- {
- entity.HasKey(e => e.Id).HasName("2013_SimplificationLogs_pkey");
-
- entity.ToTable("2013_SimplificationLogs");
-
- entity.Property(e => e.Id).HasColumnName("ID");
- entity.Property(e => e.Address).HasMaxLength(255);
- entity.Property(e => e.DeviceName).HasMaxLength(255);
- entity.Property(e => e.Execute001).HasColumnName("Execute_001");
- entity.Property(e => e.Execute002).HasColumnName("Execute_002");
- entity.Property(e => e.Execute003).HasColumnName("Execute_003");
- entity.Property(e => e.Execute004).HasColumnName("Execute_004");
- entity.Property(e => e.Execute005).HasColumnName("Execute_005");
- entity.Property(e => e.Execute006).HasColumnName("Execute_006");
- entity.Property(e => e.Execute007).HasColumnName("Execute_007");
- entity.Property(e => e.Execute008).HasColumnName("Execute_008");
- entity.Property(e => e.Room).HasMaxLength(255);
- });
-
- modelBuilder.Entity<_2079Log>(entity =>
- {
- entity.HasKey(e => e.Id).HasName("2079_Logs_pkey");
-
- entity.ToTable("2079_Logs");
-
- entity.Property(e => e.Id).HasColumnName("ID");
- entity.Property(e => e.Address).HasMaxLength(255);
- entity.Property(e => e.DeviceName).HasMaxLength(255);
- entity.Property(e => e.Execute001).HasColumnName("Execute_001");
- entity.Property(e => e.Execute002).HasColumnName("Execute_002");
- entity.Property(e => e.Execute003).HasColumnName("Execute_003");
- entity.Property(e => e.Execute004).HasColumnName("Execute_004");
- entity.Property(e => e.Execute005).HasColumnName("Execute_005");
- entity.Property(e => e.Execute006).HasColumnName("Execute_006");
- entity.Property(e => e.Execute007).HasColumnName("Execute_007");
- entity.Property(e => e.Execute008).HasColumnName("Execute_008");
- entity.Property(e => e.Room).HasMaxLength(255);
- });
-
- modelBuilder.Entity<_2079Room>(entity =>
- {
- entity.HasKey(e => e.Id).HasName("2079_Rooms_pkey");
-
- entity.ToTable("2079_Rooms");
-
- entity.Property(e => e.Id).HasColumnName("ID");
- entity.Property(e => e.ExecuteId).HasColumnName("ExecuteID");
- entity.Property(e => e.JudgTimeStr).HasMaxLength(150);
- entity.Property(e => e.LoopAddr).HasMaxLength(32);
- entity.Property(e => e.LoopName).HasMaxLength(255);
- entity.Property(e => e.Room).HasMaxLength(255);
- entity.Property(e => e.StartId).HasColumnName("StartID");
- entity.Property(e => e.StopId).HasColumnName("StopID");
- });
-
- modelBuilder.Entity<_2079SimplificationLog>(entity =>
- {
- entity.HasKey(e => e.Id).HasName("2079_SimplificationLogs_pkey");
-
- entity.ToTable("2079_SimplificationLogs");
-
- entity.Property(e => e.Id).HasColumnName("ID");
- entity.Property(e => e.Address).HasMaxLength(255);
- entity.Property(e => e.DeviceName).HasMaxLength(255);
- entity.Property(e => e.Execute001).HasColumnName("Execute_001");
- entity.Property(e => e.Execute002).HasColumnName("Execute_002");
- entity.Property(e => e.Execute003).HasColumnName("Execute_003");
- entity.Property(e => e.Execute004).HasColumnName("Execute_004");
- entity.Property(e => e.Execute005).HasColumnName("Execute_005");
- entity.Property(e => e.Execute006).HasColumnName("Execute_006");
- entity.Property(e => e.Execute007).HasColumnName("Execute_007");
- entity.Property(e => e.Execute008).HasColumnName("Execute_008");
- entity.Property(e => e.Room).HasMaxLength(255);
- });
-
- modelBuilder.Entity<_2170Log>(entity =>
- {
- entity.HasKey(e => e.Id).HasName("2170_Logs_pkey");
-
- entity.ToTable("2170_Logs");
-
- entity.Property(e => e.Id).HasColumnName("ID");
- entity.Property(e => e.Address).HasMaxLength(255);
- entity.Property(e => e.DeviceName).HasMaxLength(255);
- entity.Property(e => e.Execute001).HasColumnName("Execute_001");
- entity.Property(e => e.Execute002).HasColumnName("Execute_002");
- entity.Property(e => e.Execute003).HasColumnName("Execute_003");
- entity.Property(e => e.Execute004).HasColumnName("Execute_004");
- entity.Property(e => e.Execute005).HasColumnName("Execute_005");
- entity.Property(e => e.Execute006).HasColumnName("Execute_006");
- entity.Property(e => e.Execute007).HasColumnName("Execute_007");
- entity.Property(e => e.Execute008).HasColumnName("Execute_008");
- entity.Property(e => e.Room).HasMaxLength(255);
- });
-
- modelBuilder.Entity<_2170Room>(entity =>
- {
- entity.HasKey(e => e.Id).HasName("2170_Rooms_pkey");
-
- entity.ToTable("2170_Rooms");
-
- entity.Property(e => e.Id).HasColumnName("ID");
- entity.Property(e => e.ExecuteId).HasColumnName("ExecuteID");
- entity.Property(e => e.JudgTimeStr).HasMaxLength(150);
- entity.Property(e => e.LoopAddr).HasMaxLength(32);
- entity.Property(e => e.LoopName).HasMaxLength(255);
- entity.Property(e => e.Room).HasMaxLength(255);
- entity.Property(e => e.StartId).HasColumnName("StartID");
- entity.Property(e => e.StopId).HasColumnName("StopID");
- });
-
- modelBuilder.Entity<_2170SimplificationLog>(entity =>
- {
- entity.HasKey(e => e.Id).HasName("2170_SimplificationLogs_pkey");
-
- entity.ToTable("2170_SimplificationLogs");
-
- entity.Property(e => e.Id).HasColumnName("ID");
- entity.Property(e => e.Address).HasMaxLength(255);
- entity.Property(e => e.DeviceName).HasMaxLength(255);
- entity.Property(e => e.Execute001).HasColumnName("Execute_001");
- entity.Property(e => e.Execute002).HasColumnName("Execute_002");
- entity.Property(e => e.Execute003).HasColumnName("Execute_003");
- entity.Property(e => e.Execute004).HasColumnName("Execute_004");
- entity.Property(e => e.Execute005).HasColumnName("Execute_005");
- entity.Property(e => e.Execute006).HasColumnName("Execute_006");
- entity.Property(e => e.Execute007).HasColumnName("Execute_007");
- entity.Property(e => e.Execute008).HasColumnName("Execute_008");
- entity.Property(e => e.Room).HasMaxLength(255);
- });
-
- modelBuilder.Entity<_2209Log>(entity =>
- {
- entity.HasKey(e => e.Id).HasName("2209_Logs_pkey");
-
- entity.ToTable("2209_Logs");
-
- entity.Property(e => e.Id).HasColumnName("ID");
- entity.Property(e => e.Address).HasMaxLength(255);
- entity.Property(e => e.DeviceName).HasMaxLength(255);
- entity.Property(e => e.Execute001).HasColumnName("Execute_001");
- entity.Property(e => e.Execute002).HasColumnName("Execute_002");
- entity.Property(e => e.Execute003).HasColumnName("Execute_003");
- entity.Property(e => e.Execute004).HasColumnName("Execute_004");
- entity.Property(e => e.Execute005).HasColumnName("Execute_005");
- entity.Property(e => e.Execute006).HasColumnName("Execute_006");
- entity.Property(e => e.Execute007).HasColumnName("Execute_007");
- entity.Property(e => e.Execute008).HasColumnName("Execute_008");
- entity.Property(e => e.Room).HasMaxLength(255);
- });
-
- modelBuilder.Entity<_2209Room>(entity =>
- {
- entity.HasKey(e => e.Id).HasName("2209_Rooms_pkey");
-
- entity.ToTable("2209_Rooms");
-
- entity.Property(e => e.Id).HasColumnName("ID");
- entity.Property(e => e.ExecuteId).HasColumnName("ExecuteID");
- entity.Property(e => e.JudgTimeStr).HasMaxLength(150);
- entity.Property(e => e.LoopAddr).HasMaxLength(32);
- entity.Property(e => e.LoopName).HasMaxLength(255);
- entity.Property(e => e.Room).HasMaxLength(255);
- entity.Property(e => e.StartId).HasColumnName("StartID");
- entity.Property(e => e.StopId).HasColumnName("StopID");
- });
-
- modelBuilder.Entity<_2209SimplificationLog>(entity =>
- {
- entity.HasKey(e => e.Id).HasName("2209_SimplificationLogs_pkey");
-
- entity.ToTable("2209_SimplificationLogs");
-
- entity.Property(e => e.Id).HasColumnName("ID");
- entity.Property(e => e.Address).HasMaxLength(255);
- entity.Property(e => e.DeviceName).HasMaxLength(255);
- entity.Property(e => e.Execute001).HasColumnName("Execute_001");
- entity.Property(e => e.Execute002).HasColumnName("Execute_002");
- entity.Property(e => e.Execute003).HasColumnName("Execute_003");
- entity.Property(e => e.Execute004).HasColumnName("Execute_004");
- entity.Property(e => e.Execute005).HasColumnName("Execute_005");
- entity.Property(e => e.Execute006).HasColumnName("Execute_006");
- entity.Property(e => e.Execute007).HasColumnName("Execute_007");
- entity.Property(e => e.Execute008).HasColumnName("Execute_008");
- entity.Property(e => e.Room).HasMaxLength(255);
- });
-
- modelBuilder.Entity<原始日志表设计备份1085Log>(entity =>
- {
- entity.HasKey(e => e.Id).HasName("1085_Logs_pkey");
-
- entity.ToTable("原始日志表设计备份1085_Logs");
-
- entity.Property(e => e.Id)
- .ValueGeneratedNever()
- .HasComment("ID")
- .HasColumnName("ID");
- entity.Property(e => e.Address)
- .HasMaxLength(255)
- .HasComment("回路地址");
- entity.Property(e => e.DeviceName)
- .HasMaxLength(255)
- .HasComment("回路名称(离在线标记为“离线”,“在线”)");
- entity.Property(e => e.ErrorCode)
- .HasMaxLength(255)
- .HasComment("错误标号");
- entity.Property(e => e.ExecuteCode).HasComment("处理标号");
- entity.Property(e => e.IsError)
- .HasComment("是否为错误记录")
- .HasColumnType("bit(1)");
- entity.Property(e => e.Room)
- .HasMaxLength(255)
- .HasComment("房号");
- entity.Property(e => e.Status).HasComment("状态(离在线,标记1为在线,2为离线)");
- entity.Property(e => e.TimeStamp).HasComment("时间戳");
- });
-
- modelBuilder.Entity<原始日志表设计备份1085Room>(entity =>
- {
- entity.HasKey(e => e.Id).HasName("1085_Rooms_pkey");
-
- entity.ToTable("原始日志表设计备份1085_Rooms");
-
- entity.Property(e => e.Id)
- .ValueGeneratedNever()
- .HasComment("ID")
- .HasColumnName("ID");
- entity.Property(e => e.Date).HasComment("所属日期");
- entity.Property(e => e.E001).HasComment("错误001次数(下同)");
- entity.Property(e => e.E002).HasComment("错误002次数");
- entity.Property(e => e.LogsLength).HasComment("日志总记录条数");
- entity.Property(e => e.RcuStatus).HasComment("主机在线状态");
- entity.Property(e => e.Room)
- .HasMaxLength(255)
- .HasComment("房号");
- });
-
- modelBuilder.Entity<原始日志表设计备份1085Rooms1>(entity =>
- {
- entity.HasKey(e => e.Id).HasName("原始日志表设计备份1085_Rooms_copy1_pkey");
-
- entity.ToTable("原始日志表设计备份1085_Rooms1");
-
- entity.Property(e => e.Id)
- .ValueGeneratedNever()
- .HasComment("ID")
- .HasColumnName("ID");
- entity.Property(e => e.JudgCoun).HasComment("判断数量");
- entity.Property(e => e.JudgTime)
- .HasComment("判断时间")
- .HasColumnName("JudgTime ");
- entity.Property(e => e.JudgTimeStr).HasMaxLength(150);
- entity.Property(e => e.LoopAddr)
- .HasMaxLength(32)
- .HasComment("回路地址");
- entity.Property(e => e.RcuStatus).HasComment("主机在线状态");
- entity.Property(e => e.Room)
- .HasMaxLength(255)
- .HasComment("房号");
- entity.Property(e => e.StartId).HasColumnName("StartID");
- entity.Property(e => e.StartTime).HasComment("判断开始时间");
- entity.Property(e => e.StateType)
- .HasMaxLength(32)
- .HasComment("状态类型");
- entity.Property(e => e.StopId).HasColumnName("StopID");
- entity.Property(e => e.StopTime).HasComment("判断停止时间");
- });
-
- OnModelCreatingPartial(modelBuilder);
- }
-
- partial void OnModelCreatingPartial(ModelBuilder modelBuilder);
-}
diff --git a/DAL/PGModels/Qingao.cs b/DAL/PGModels/Qingao.cs
deleted file mode 100644
index 4f929f7..0000000
--- a/DAL/PGModels/Qingao.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/Recordhotel.cs b/DAL/PGModels/Recordhotel.cs
deleted file mode 100644
index afc93b1..0000000
--- a/DAL/PGModels/Recordhotel.cs
+++ /dev/null
@@ -1,15 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/SkyworthTvMonitorlog.cs b/DAL/PGModels/SkyworthTvMonitorlog.cs
deleted file mode 100644
index 64a916b..0000000
--- a/DAL/PGModels/SkyworthTvMonitorlog.cs
+++ /dev/null
@@ -1,25 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/StatisticsTotal.cs b/DAL/PGModels/StatisticsTotal.cs
deleted file mode 100644
index 6bc0bad..0000000
--- a/DAL/PGModels/StatisticsTotal.cs
+++ /dev/null
@@ -1,21 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/TclTvMonitorlog.cs b/DAL/PGModels/TclTvMonitorlog.cs
deleted file mode 100644
index 136e6ed..0000000
--- a/DAL/PGModels/TclTvMonitorlog.cs
+++ /dev/null
@@ -1,25 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/WebapiMonitorlog.cs b/DAL/PGModels/WebapiMonitorlog.cs
deleted file mode 100644
index bd52bd6..0000000
--- a/DAL/PGModels/WebapiMonitorlog.cs
+++ /dev/null
@@ -1,23 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/_1001Log.cs b/DAL/PGModels/_1001Log.cs
deleted file mode 100644
index bcfbbfe..0000000
--- a/DAL/PGModels/_1001Log.cs
+++ /dev/null
@@ -1,53 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/_1001Room.cs b/DAL/PGModels/_1001Room.cs
deleted file mode 100644
index d0b2ba9..0000000
--- a/DAL/PGModels/_1001Room.cs
+++ /dev/null
@@ -1,39 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/_1001SimplificationLog.cs b/DAL/PGModels/_1001SimplificationLog.cs
deleted file mode 100644
index 615b50b..0000000
--- a/DAL/PGModels/_1001SimplificationLog.cs
+++ /dev/null
@@ -1,53 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/_1003Log.cs b/DAL/PGModels/_1003Log.cs
deleted file mode 100644
index a44daf4..0000000
--- a/DAL/PGModels/_1003Log.cs
+++ /dev/null
@@ -1,51 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/_1003Room.cs b/DAL/PGModels/_1003Room.cs
deleted file mode 100644
index d2a84e6..0000000
--- a/DAL/PGModels/_1003Room.cs
+++ /dev/null
@@ -1,31 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/_1003SimplificationLog.cs b/DAL/PGModels/_1003SimplificationLog.cs
deleted file mode 100644
index 5a394d9..0000000
--- a/DAL/PGModels/_1003SimplificationLog.cs
+++ /dev/null
@@ -1,51 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/_1045Log.cs b/DAL/PGModels/_1045Log.cs
deleted file mode 100644
index a7b06f7..0000000
--- a/DAL/PGModels/_1045Log.cs
+++ /dev/null
@@ -1,53 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/_1045Room.cs b/DAL/PGModels/_1045Room.cs
deleted file mode 100644
index 9a1eaca..0000000
--- a/DAL/PGModels/_1045Room.cs
+++ /dev/null
@@ -1,39 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/_1045SimplificationLog.cs b/DAL/PGModels/_1045SimplificationLog.cs
deleted file mode 100644
index 59879d6..0000000
--- a/DAL/PGModels/_1045SimplificationLog.cs
+++ /dev/null
@@ -1,53 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/_1085Log.cs b/DAL/PGModels/_1085Log.cs
deleted file mode 100644
index fd5f71d..0000000
--- a/DAL/PGModels/_1085Log.cs
+++ /dev/null
@@ -1,53 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/_1085Room.cs b/DAL/PGModels/_1085Room.cs
deleted file mode 100644
index afe1ea6..0000000
--- a/DAL/PGModels/_1085Room.cs
+++ /dev/null
@@ -1,39 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/_1085SimplificationLog.cs b/DAL/PGModels/_1085SimplificationLog.cs
deleted file mode 100644
index 7ca0712..0000000
--- a/DAL/PGModels/_1085SimplificationLog.cs
+++ /dev/null
@@ -1,53 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/_1091Log.cs b/DAL/PGModels/_1091Log.cs
deleted file mode 100644
index 4074bfd..0000000
--- a/DAL/PGModels/_1091Log.cs
+++ /dev/null
@@ -1,53 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/_1091Room.cs b/DAL/PGModels/_1091Room.cs
deleted file mode 100644
index 8b6f6ce..0000000
--- a/DAL/PGModels/_1091Room.cs
+++ /dev/null
@@ -1,39 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/_1091SimplificationLog.cs b/DAL/PGModels/_1091SimplificationLog.cs
deleted file mode 100644
index 703a43c..0000000
--- a/DAL/PGModels/_1091SimplificationLog.cs
+++ /dev/null
@@ -1,53 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/_1106Log.cs b/DAL/PGModels/_1106Log.cs
deleted file mode 100644
index 4d1fcbb..0000000
--- a/DAL/PGModels/_1106Log.cs
+++ /dev/null
@@ -1,53 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/_1106Room.cs b/DAL/PGModels/_1106Room.cs
deleted file mode 100644
index 9018ce1..0000000
--- a/DAL/PGModels/_1106Room.cs
+++ /dev/null
@@ -1,39 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/_1106SimplificationLog.cs b/DAL/PGModels/_1106SimplificationLog.cs
deleted file mode 100644
index 35622af..0000000
--- a/DAL/PGModels/_1106SimplificationLog.cs
+++ /dev/null
@@ -1,53 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/_1197Log.cs b/DAL/PGModels/_1197Log.cs
deleted file mode 100644
index 1e60240..0000000
--- a/DAL/PGModels/_1197Log.cs
+++ /dev/null
@@ -1,53 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/_1197Room.cs b/DAL/PGModels/_1197Room.cs
deleted file mode 100644
index 1563101..0000000
--- a/DAL/PGModels/_1197Room.cs
+++ /dev/null
@@ -1,39 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/_1197SimplificationLog.cs b/DAL/PGModels/_1197SimplificationLog.cs
deleted file mode 100644
index a8a9b42..0000000
--- a/DAL/PGModels/_1197SimplificationLog.cs
+++ /dev/null
@@ -1,53 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/_1304Log.cs b/DAL/PGModels/_1304Log.cs
deleted file mode 100644
index 05e0a05..0000000
--- a/DAL/PGModels/_1304Log.cs
+++ /dev/null
@@ -1,53 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/_1304Room.cs b/DAL/PGModels/_1304Room.cs
deleted file mode 100644
index 36c4dea..0000000
--- a/DAL/PGModels/_1304Room.cs
+++ /dev/null
@@ -1,39 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/_1304SimplificationLog.cs b/DAL/PGModels/_1304SimplificationLog.cs
deleted file mode 100644
index 443c513..0000000
--- a/DAL/PGModels/_1304SimplificationLog.cs
+++ /dev/null
@@ -1,53 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/_1399Log.cs b/DAL/PGModels/_1399Log.cs
deleted file mode 100644
index 46c4767..0000000
--- a/DAL/PGModels/_1399Log.cs
+++ /dev/null
@@ -1,53 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/_1399Room.cs b/DAL/PGModels/_1399Room.cs
deleted file mode 100644
index 8aea791..0000000
--- a/DAL/PGModels/_1399Room.cs
+++ /dev/null
@@ -1,39 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/_1399SimplificationLog.cs b/DAL/PGModels/_1399SimplificationLog.cs
deleted file mode 100644
index ad02195..0000000
--- a/DAL/PGModels/_1399SimplificationLog.cs
+++ /dev/null
@@ -1,53 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/_1564Log.cs b/DAL/PGModels/_1564Log.cs
deleted file mode 100644
index ddddd09..0000000
--- a/DAL/PGModels/_1564Log.cs
+++ /dev/null
@@ -1,53 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/_1564Room.cs b/DAL/PGModels/_1564Room.cs
deleted file mode 100644
index 9be1ed4..0000000
--- a/DAL/PGModels/_1564Room.cs
+++ /dev/null
@@ -1,39 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/_1564SimplificationLog.cs b/DAL/PGModels/_1564SimplificationLog.cs
deleted file mode 100644
index 042a41e..0000000
--- a/DAL/PGModels/_1564SimplificationLog.cs
+++ /dev/null
@@ -1,53 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/_1633Log.cs b/DAL/PGModels/_1633Log.cs
deleted file mode 100644
index c156d5d..0000000
--- a/DAL/PGModels/_1633Log.cs
+++ /dev/null
@@ -1,53 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/_1633Room.cs b/DAL/PGModels/_1633Room.cs
deleted file mode 100644
index bf46df3..0000000
--- a/DAL/PGModels/_1633Room.cs
+++ /dev/null
@@ -1,39 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/_1633SimplificationLog.cs b/DAL/PGModels/_1633SimplificationLog.cs
deleted file mode 100644
index e00d6c4..0000000
--- a/DAL/PGModels/_1633SimplificationLog.cs
+++ /dev/null
@@ -1,53 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/_1760Log.cs b/DAL/PGModels/_1760Log.cs
deleted file mode 100644
index a73d062..0000000
--- a/DAL/PGModels/_1760Log.cs
+++ /dev/null
@@ -1,53 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/_1760Room.cs b/DAL/PGModels/_1760Room.cs
deleted file mode 100644
index 2a6c9fd..0000000
--- a/DAL/PGModels/_1760Room.cs
+++ /dev/null
@@ -1,39 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/_1760SimplificationLog.cs b/DAL/PGModels/_1760SimplificationLog.cs
deleted file mode 100644
index 065f798..0000000
--- a/DAL/PGModels/_1760SimplificationLog.cs
+++ /dev/null
@@ -1,53 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/_1781Log.cs b/DAL/PGModels/_1781Log.cs
deleted file mode 100644
index 05eec21..0000000
--- a/DAL/PGModels/_1781Log.cs
+++ /dev/null
@@ -1,53 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/_1781Room.cs b/DAL/PGModels/_1781Room.cs
deleted file mode 100644
index ef7943d..0000000
--- a/DAL/PGModels/_1781Room.cs
+++ /dev/null
@@ -1,39 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/_1781SimplificationLog.cs b/DAL/PGModels/_1781SimplificationLog.cs
deleted file mode 100644
index 3d83781..0000000
--- a/DAL/PGModels/_1781SimplificationLog.cs
+++ /dev/null
@@ -1,53 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/_1849Log.cs b/DAL/PGModels/_1849Log.cs
deleted file mode 100644
index 2c98455..0000000
--- a/DAL/PGModels/_1849Log.cs
+++ /dev/null
@@ -1,53 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/_1849Room.cs b/DAL/PGModels/_1849Room.cs
deleted file mode 100644
index 32ee0a9..0000000
--- a/DAL/PGModels/_1849Room.cs
+++ /dev/null
@@ -1,39 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/_1849SimplificationLog.cs b/DAL/PGModels/_1849SimplificationLog.cs
deleted file mode 100644
index d3703f7..0000000
--- a/DAL/PGModels/_1849SimplificationLog.cs
+++ /dev/null
@@ -1,53 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/_1866Log.cs b/DAL/PGModels/_1866Log.cs
deleted file mode 100644
index 5115822..0000000
--- a/DAL/PGModels/_1866Log.cs
+++ /dev/null
@@ -1,53 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/_1866Room.cs b/DAL/PGModels/_1866Room.cs
deleted file mode 100644
index 834f0d8..0000000
--- a/DAL/PGModels/_1866Room.cs
+++ /dev/null
@@ -1,39 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/_1866SimplificationLog.cs b/DAL/PGModels/_1866SimplificationLog.cs
deleted file mode 100644
index 5495475..0000000
--- a/DAL/PGModels/_1866SimplificationLog.cs
+++ /dev/null
@@ -1,53 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/_2006Log.cs b/DAL/PGModels/_2006Log.cs
deleted file mode 100644
index 2cb0066..0000000
--- a/DAL/PGModels/_2006Log.cs
+++ /dev/null
@@ -1,53 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/_2006Room.cs b/DAL/PGModels/_2006Room.cs
deleted file mode 100644
index 8ed0f5d..0000000
--- a/DAL/PGModels/_2006Room.cs
+++ /dev/null
@@ -1,39 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/_2006SimplificationLog.cs b/DAL/PGModels/_2006SimplificationLog.cs
deleted file mode 100644
index 6038c33..0000000
--- a/DAL/PGModels/_2006SimplificationLog.cs
+++ /dev/null
@@ -1,53 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/_2013Log.cs b/DAL/PGModels/_2013Log.cs
deleted file mode 100644
index 71bfefd..0000000
--- a/DAL/PGModels/_2013Log.cs
+++ /dev/null
@@ -1,53 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/_2013Room.cs b/DAL/PGModels/_2013Room.cs
deleted file mode 100644
index c02e940..0000000
--- a/DAL/PGModels/_2013Room.cs
+++ /dev/null
@@ -1,39 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/_2013SimplificationLog.cs b/DAL/PGModels/_2013SimplificationLog.cs
deleted file mode 100644
index e772537..0000000
--- a/DAL/PGModels/_2013SimplificationLog.cs
+++ /dev/null
@@ -1,53 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/_2016Log.cs b/DAL/PGModels/_2016Log.cs
deleted file mode 100644
index ddec178..0000000
--- a/DAL/PGModels/_2016Log.cs
+++ /dev/null
@@ -1,53 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/_2016Room.cs b/DAL/PGModels/_2016Room.cs
deleted file mode 100644
index d636118..0000000
--- a/DAL/PGModels/_2016Room.cs
+++ /dev/null
@@ -1,39 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/_2016SimplificationLog.cs b/DAL/PGModels/_2016SimplificationLog.cs
deleted file mode 100644
index b5d4637..0000000
--- a/DAL/PGModels/_2016SimplificationLog.cs
+++ /dev/null
@@ -1,53 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/_2032Log.cs b/DAL/PGModels/_2032Log.cs
deleted file mode 100644
index 502f7d8..0000000
--- a/DAL/PGModels/_2032Log.cs
+++ /dev/null
@@ -1,53 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/_2032Room.cs b/DAL/PGModels/_2032Room.cs
deleted file mode 100644
index 50c8eba..0000000
--- a/DAL/PGModels/_2032Room.cs
+++ /dev/null
@@ -1,39 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/_2032SimplificationLog.cs b/DAL/PGModels/_2032SimplificationLog.cs
deleted file mode 100644
index fae31a9..0000000
--- a/DAL/PGModels/_2032SimplificationLog.cs
+++ /dev/null
@@ -1,53 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/_2079Log.cs b/DAL/PGModels/_2079Log.cs
deleted file mode 100644
index 8dd1800..0000000
--- a/DAL/PGModels/_2079Log.cs
+++ /dev/null
@@ -1,53 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/_2079Room.cs b/DAL/PGModels/_2079Room.cs
deleted file mode 100644
index 7802b86..0000000
--- a/DAL/PGModels/_2079Room.cs
+++ /dev/null
@@ -1,39 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/_2079SimplificationLog.cs b/DAL/PGModels/_2079SimplificationLog.cs
deleted file mode 100644
index 9de5729..0000000
--- a/DAL/PGModels/_2079SimplificationLog.cs
+++ /dev/null
@@ -1,53 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/_2108Log.cs b/DAL/PGModels/_2108Log.cs
deleted file mode 100644
index 1c52beb..0000000
--- a/DAL/PGModels/_2108Log.cs
+++ /dev/null
@@ -1,53 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/_2108Room.cs b/DAL/PGModels/_2108Room.cs
deleted file mode 100644
index b57237d..0000000
--- a/DAL/PGModels/_2108Room.cs
+++ /dev/null
@@ -1,39 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/_2108SimplificationLog.cs b/DAL/PGModels/_2108SimplificationLog.cs
deleted file mode 100644
index dc0319b..0000000
--- a/DAL/PGModels/_2108SimplificationLog.cs
+++ /dev/null
@@ -1,53 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/_2170Log.cs b/DAL/PGModels/_2170Log.cs
deleted file mode 100644
index 1f343ce..0000000
--- a/DAL/PGModels/_2170Log.cs
+++ /dev/null
@@ -1,53 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/_2170Room.cs b/DAL/PGModels/_2170Room.cs
deleted file mode 100644
index dae7074..0000000
--- a/DAL/PGModels/_2170Room.cs
+++ /dev/null
@@ -1,39 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/_2170SimplificationLog.cs b/DAL/PGModels/_2170SimplificationLog.cs
deleted file mode 100644
index 3a39539..0000000
--- a/DAL/PGModels/_2170SimplificationLog.cs
+++ /dev/null
@@ -1,53 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/_2209Log.cs b/DAL/PGModels/_2209Log.cs
deleted file mode 100644
index 1b2120f..0000000
--- a/DAL/PGModels/_2209Log.cs
+++ /dev/null
@@ -1,53 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/_2209Room.cs b/DAL/PGModels/_2209Room.cs
deleted file mode 100644
index 7ac728d..0000000
--- a/DAL/PGModels/_2209Room.cs
+++ /dev/null
@@ -1,39 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/_2209SimplificationLog.cs b/DAL/PGModels/_2209SimplificationLog.cs
deleted file mode 100644
index aab3316..0000000
--- a/DAL/PGModels/_2209SimplificationLog.cs
+++ /dev/null
@@ -1,53 +0,0 @@
-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; }
-}
diff --git a/DAL/PGModels/原始日志表设计备份1085Log.cs b/DAL/PGModels/原始日志表设计备份1085Log.cs
deleted file mode 100644
index d422987..0000000
--- a/DAL/PGModels/原始日志表设计备份1085Log.cs
+++ /dev/null
@@ -1,53 +0,0 @@
-using System;
-using System.Collections;
-using System.Collections.Generic;
-
-namespace DAL.PGModels;
-
-public partial class 原始日志表设计备份1085Log
-{
- ///
- /// ID
- ///
- public int Id { get; set; }
-
- ///
- /// 房号
- ///
- public string? Room { get; set; }
-
- ///
- /// 回路名称(离在线标记为“离线”,“在线”)
- ///
- public string? DeviceName { get; set; }
-
- ///
- /// 状态(离在线,标记1为在线,2为离线)
- ///
- public short? Status { get; set; }
-
- ///
- /// 回路地址
- ///
- public string? Address { get; set; }
-
- ///
- /// 时间戳
- ///
- public DateOnly? TimeStamp { get; set; }
-
- ///
- /// 是否为错误记录
- ///
- public BitArray? IsError { get; set; }
-
- ///
- /// 错误标号
- ///
- public string? ErrorCode { get; set; }
-
- ///
- /// 处理标号
- ///
- public long? ExecuteCode { get; set; }
-}
diff --git a/DAL/PGModels/原始日志表设计备份1085Room.cs b/DAL/PGModels/原始日志表设计备份1085Room.cs
deleted file mode 100644
index a65fcc1..0000000
--- a/DAL/PGModels/原始日志表设计备份1085Room.cs
+++ /dev/null
@@ -1,54 +0,0 @@
-using System;
-using System.Collections.Generic;
-
-namespace DAL.PGModels;
-
-public partial class 原始日志表设计备份1085Room
-{
- ///
- /// ID
- ///
- public long Id { get; set; }
-
- ///
- /// 房号
- ///
- public string? Room { get; set; }
-
- ///
- /// 主机在线状态
- ///
- public short? RcuStatus { get; set; }
-
- ///
- /// 所属日期
- ///
- public DateOnly? Date { get; set; }
-
- ///
- /// 错误001次数(下同)
- ///
- public int? E001 { get; set; }
-
- ///
- /// 错误002次数
- ///
- 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; }
-
- ///
- /// 日志总记录条数
- ///
- public long? LogsLength { get; set; }
-}
diff --git a/DAL/PGModels/原始日志表设计备份1085Rooms1.cs b/DAL/PGModels/原始日志表设计备份1085Rooms1.cs
deleted file mode 100644
index 1a1ef56..0000000
--- a/DAL/PGModels/原始日志表设计备份1085Rooms1.cs
+++ /dev/null
@@ -1,58 +0,0 @@
-using System;
-using System.Collections.Generic;
-
-namespace DAL.PGModels;
-
-public partial class 原始日志表设计备份1085Rooms1
-{
- ///
- /// ID
- ///
- public long Id { get; set; }
-
- ///
- /// 房号
- ///
- public string? Room { get; set; }
-
- ///
- /// 主机在线状态
- ///
- public short? RcuStatus { get; set; }
-
- ///
- /// 判断时间
- ///
- public long? JudgTime { get; set; }
-
- ///
- /// 状态类型
- ///
- public string? StateType { get; set; }
-
- ///
- /// 判断开始时间
- ///
- public long? StartTime { get; set; }
-
- ///
- /// 判断停止时间
- ///
- public long? StopTime { get; set; }
-
- public int? StartId { get; set; }
-
- public int? StopId { get; set; }
-
- ///
- /// 判断数量
- ///
- public int? JudgCoun { get; set; }
-
- ///
- /// 回路地址
- ///
- public string? LoopAddr { get; set; }
-
- public string? JudgTimeStr { get; set; }
-}