diff --git a/.vs/CNAS_DBSync/v15/.suo b/.vs/CNAS_DBSync/v15/.suo index f7e163e..b47fc9c 100644 Binary files a/.vs/CNAS_DBSync/v15/.suo and b/.vs/CNAS_DBSync/v15/.suo differ diff --git a/.vs/CNAS_DBSync/v15/Server/sqlite3/storage.ide b/.vs/CNAS_DBSync/v15/Server/sqlite3/storage.ide index a3903ea..5cc42ca 100644 Binary files a/.vs/CNAS_DBSync/v15/Server/sqlite3/storage.ide and b/.vs/CNAS_DBSync/v15/Server/sqlite3/storage.ide differ diff --git a/.vs/CNAS_DBSync/v15/Server/sqlite3/storage.ide-shm b/.vs/CNAS_DBSync/v15/Server/sqlite3/storage.ide-shm index b2309c4..2ac1241 100644 Binary files a/.vs/CNAS_DBSync/v15/Server/sqlite3/storage.ide-shm and b/.vs/CNAS_DBSync/v15/Server/sqlite3/storage.ide-shm differ diff --git a/.vs/CNAS_DBSync/v15/Server/sqlite3/storage.ide-wal b/.vs/CNAS_DBSync/v15/Server/sqlite3/storage.ide-wal index c6cc5b2..a557329 100644 Binary files a/.vs/CNAS_DBSync/v15/Server/sqlite3/storage.ide-wal and b/.vs/CNAS_DBSync/v15/Server/sqlite3/storage.ide-wal differ diff --git a/CNAS_DBSync/frmSplitParam.Designer.cs b/CNAS_DBSync/frmSplitParam.Designer.cs index 489742c..2168ef9 100644 --- a/CNAS_DBSync/frmSplitParam.Designer.cs +++ b/CNAS_DBSync/frmSplitParam.Designer.cs @@ -105,18 +105,18 @@ this.label5.AutoSize = true; this.label5.Location = new System.Drawing.Point(199, 108); this.label5.Name = "label5"; - this.label5.Size = new System.Drawing.Size(243, 20); + this.label5.Size = new System.Drawing.Size(104, 20); this.label5.TabIndex = 7; - this.label5.Text = "(截断后返回左侧(L)/右侧(R)的内容)"; + this.label5.Text = "(截断终止位)"; // // label4 // this.label4.AutoSize = true; this.label4.Location = new System.Drawing.Point(200, 35); this.label4.Name = "label4"; - this.label4.Size = new System.Drawing.Size(79, 20); + this.label4.Size = new System.Drawing.Size(114, 20); this.label4.TabIndex = 6; - this.label4.Text = "(截断字符)"; + this.label4.Text = "(截断起始位)"; // // label2 // diff --git a/CNAS_DBSync/frmSplitParam.cs b/CNAS_DBSync/frmSplitParam.cs index 433f459..fdb9982 100644 --- a/CNAS_DBSync/frmSplitParam.cs +++ b/CNAS_DBSync/frmSplitParam.cs @@ -32,11 +32,11 @@ namespace CNAS_DBSync MessageBox.Show("参数2不能为空。"); return; } - if (this.cbxPrama2.Text != "L" && this.cbxPrama2.Text != "R") - { - MessageBox.Show("参数2不符合规则,请重新选择。"); - return; - } + //if (this.cbxPrama2.Text != "L" && this.cbxPrama2.Text != "R") + //{ + // MessageBox.Show("参数2不符合规则,请重新选择。"); + // return; + //} this.conditionvalue.Value = "{"+ this.txtPrama1.Text + ","+ this.cbxPrama2.Text + "}"; this.DialogResult = DialogResult.OK; diff --git a/CnasSynchronusClient/CnasInsertOperation.cs b/CnasSynchronusClient/CnasInsertOperation.cs index 450e6e1..25ddfa4 100644 --- a/CnasSynchronusClient/CnasInsertOperation.cs +++ b/CnasSynchronusClient/CnasInsertOperation.cs @@ -4,6 +4,8 @@ using System; using System.Collections.Generic; using System.Data; using System.Linq; +using System.Management; +using System.Net.NetworkInformation; using System.Text; using System.Text.RegularExpressions; @@ -60,7 +62,7 @@ namespace CnasSynchronusClient break; } if (dtTarget.Columns.Contains(syncInstrumentItem.CnasInstrumentColumn)) - drNewTarget[syncInstrumentItem.CnasInstrumentColumn] = syncInstrumentItem.GUID; + drNewTarget[syncInstrumentItem.CnasInstrumentColumn] = syncInstrumentItem.GUID + GetMachineCode(); else { strErrorMsg = "设置的CNAS仪器信息列没有在库中找到,请重新配置"; @@ -79,7 +81,70 @@ namespace CnasSynchronusClient } return strErrorMsg; } + private string GetMachineCode() + { + StringBuilder machineCode = new StringBuilder(); + + // 获取CPU ID + string cpuId = GetCPUId(); + machineCode.Append(cpuId); + + // 获取所有MAC地址 + List macAddresses = GetMACAddresses(); + foreach (string mac in macAddresses) + { + machineCode.Append("_").Append(mac); + } + + return machineCode.ToString(); + } + + private string GetCPUId() + { + try + { + using (ManagementClass mc = new ManagementClass("Win32_Processor")) + { + ManagementObjectCollection moc = mc.GetInstances(); + foreach (ManagementObject mo in moc) + { + return mo.Properties["ProcessorId"].Value.ToString(); + } + } + } + catch (Exception ex) + { + throw new Exception("获取CPU ID失败: " + ex.Message); + } + return string.Empty; + } + private List GetMACAddresses() + { + List macAddresses = new List(); + try + { + NetworkInterface[] nics = NetworkInterface.GetAllNetworkInterfaces(); + foreach (NetworkInterface adapter in nics) + { + // 只获取物理网卡的MAC地址 + if (adapter.NetworkInterfaceType == NetworkInterfaceType.Ethernet || + adapter.NetworkInterfaceType == NetworkInterfaceType.Wireless80211) + { + string mac = adapter.GetPhysicalAddress().ToString(); + if (!string.IsNullOrEmpty(mac)) + { + macAddresses.Add(mac); + } + } + } + } + catch (Exception ex) + { + throw new Exception("获取MAC地址失败: " + ex.Message); + } + return macAddresses; + } /// /// 获取日期字段 /// @@ -443,7 +508,6 @@ namespace CnasSynchronusClient AppLog.Error(ex.Message); } } - /// /// 处理SubString类型固定值 /// @@ -458,24 +522,27 @@ namespace CnasSynchronusClient if (item.Value != null && item.Value.ToString() != "") { string[] strValues = item.Value.ToString().Split(new string[] { "{", ",", "}" }, StringSplitOptions.RemoveEmptyEntries); + if (strValues.Length == 2) { string[] strInputValues = drNewTarget[item.ColumnName].ToString().Split(new string[] { strValues[0] }, StringSplitOptions.RemoveEmptyEntries); if (strInputValues.Length == 1) { - drNewTarget[item.ColumnName] = strInputValues[0]; - } - if (strInputValues.Length == 2) //只处理分割后有两部分的 - { - if (strValues[1] == "L") - { - drNewTarget[item.ColumnName] = strInputValues[0]; - } - else if (strValues[1] == "R") - { - drNewTarget[item.ColumnName] = strInputValues[1]; - } + + var list = strInputValues[0].Substring(Convert.ToInt32(strValues[0]), Convert.ToInt32(strValues[1])); + drNewTarget[item.ColumnName] = list; } + //if (strInputValues.Length == 2) //只处理分割后有两部分的 + //{ + // if (strValues[1] == "L") + // { + // drNewTarget[item.ColumnName] = strInputValues[0]; + // } + // else if (strValues[1] == "R") + // { + // drNewTarget[item.ColumnName] = strInputValues[1]; + // } + //} } } } diff --git a/CnasSynchronusClient/CnasSynchronusBLL.csproj b/CnasSynchronusClient/CnasSynchronusBLL.csproj index 66a9e69..372658b 100644 --- a/CnasSynchronusClient/CnasSynchronusBLL.csproj +++ b/CnasSynchronusClient/CnasSynchronusBLL.csproj @@ -45,6 +45,7 @@ + diff --git a/dll/CNAS_DBSync.exe b/dll/CNAS_DBSync.exe index 58b9fb4..a373bea 100644 Binary files a/dll/CNAS_DBSync.exe and b/dll/CNAS_DBSync.exe differ diff --git a/dll/CnasSynchronusClient.dll b/dll/CnasSynchronusClient.dll index 4b12d5d..c294d78 100644 Binary files a/dll/CnasSynchronusClient.dll and b/dll/CnasSynchronusClient.dll differ diff --git a/dll/DataConfig/aaa.xml b/dll/DataConfig/aaa.xml index 0d88b3a..e973fb0 100644 --- a/dll/DataConfig/aaa.xml +++ b/dll/DataConfig/aaa.xml @@ -1 +1,5 @@ --100-10aaa \ No newline at end of file +<<<<<<< HEAD +-100-10aaa +======= +000aaa +>>>>>>> e61dd2ce015f609324a2df3f403e999bf1c3591b diff --git a/dll/ErrorLog/20250216.txt b/dll/ErrorLog/20250216.txt index 60e29c0..9619bbf 100644 --- a/dll/ErrorLog/20250216.txt +++ b/dll/ErrorLog/20250216.txt @@ -1833,6 +1833,7 @@ ¼ʱ䣺2025-02-16 14:15:36,445 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet ¼ʱ䣺2025-02-16 14:15:36,445 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table ¼ʱ䣺2025-02-16 14:15:43,659 ߳ID:[1]- :FileHelper :GetLocalFile Ϣ:ûҵ.xml +<<<<<<< HEAD ¼ʱ䣺2025-02-16 15:30:17,042 ߳ID:[1]- :FileHelper :GetLocalFile Ϣ:ûҵfff.xml ¼ʱ䣺2025-02-16 15:30:18,702 ߳ID:[1]- :FileHelper :GetLocalFile Ϣ:ûҵfff.xml ¼ʱ䣺2025-02-16 15:30:19,979 ߳ID:[1]- :FileHelper :GetLocalFile Ϣ:ûҵfff.xml @@ -2010,3 +2011,2713 @@ ¼ʱ䣺2025-02-16 16:07:06,278 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'STU'System.Data.DataSet ¼ʱ䣺2025-02-16 16:07:06,294 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'STU'System.Data.DataSet ¼ʱ䣺2025-02-16 16:07:06,295 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'STU'System.Data.DataSet +======= +¼ʱ䣺2025-02-16 15:41:58,969 ߳ID:[1]- :FileHelper :GetLocalFile Ϣ:ûҵfff.xml +¼ʱ䣺2025-02-16 15:42:00,187 ߳ID:[1]- :FileHelper :GetLocalFile Ϣ:ûҵfff.xml +¼ʱ䣺2025-02-16 15:42:00,707 ߳ID:[1]- :FileHelper :GetLocalFile Ϣ:ûҵfff.xml +¼ʱ䣺2025-02-16 15:42:09,060 ߳ID:[1]- :FileHelper :GetLocalFile Ϣ:ûҵfff.xml +¼ʱ䣺2025-02-16 15:42:11,401 ߳ID:[1]- :FileHelper :GetLocalFile Ϣ:ûҵfff.xml +¼ʱ䣺2025-02-16 15:42:14,091 ߳ID:[1]- :FileHelper :GetLocalFile Ϣ:ûҵfff.xml +¼ʱ䣺2025-02-16 15:42:16,697 ߳ID:[1]- :FileHelper :GetLocalFile Ϣ:ûҵfff.xml +¼ʱ䣺2025-02-16 15:42:19,431 ߳ID:[1]- :FileHelper :GetLocalFile Ϣ:ûҵaaa.xml +¼ʱ䣺2025-02-16 15:43:06,579 ߳ID:[1]- :FileHelper :GetLocalFile Ϣ:ûҵfff.xml +¼ʱ䣺2025-02-16 15:43:56,010 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='platform'server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,010 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='platform'server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,012 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='platform'System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,069 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='platform'System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,070 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='platform'System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,071 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_ge_bytearrayGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:43:56,071 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_ge_bytearraySELECT * FROM act_ge_bytearray Where 0=1 +¼ʱ䣺2025-02-16 15:43:56,072 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_ge_bytearray Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,072 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ge_bytearray Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,072 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ge_bytearray Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,074 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_ge_bytearray Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,075 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_ge_bytearray Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,075 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_ge_bytearrayMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:43:56,075 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_ge_propertyGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:43:56,076 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_ge_propertySELECT * FROM act_ge_property Where 0=1 +¼ʱ䣺2025-02-16 15:43:56,076 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_ge_property Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,076 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ge_property Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,076 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ge_property Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,078 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_ge_property Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,078 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_ge_property Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,078 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_ge_propertyMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:43:56,078 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_hi_actinstGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:43:56,078 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_hi_actinstSELECT * FROM act_hi_actinst Where 0=1 +¼ʱ䣺2025-02-16 15:43:56,078 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_hi_actinst Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,079 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_actinst Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,079 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_actinst Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,080 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_hi_actinst Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,080 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_hi_actinst Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,080 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_hi_actinstMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:43:56,081 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_hi_attachmentGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:43:56,081 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_hi_attachmentSELECT * FROM act_hi_attachment Where 0=1 +¼ʱ䣺2025-02-16 15:43:56,081 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_hi_attachment Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,081 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_attachment Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,081 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_attachment Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,083 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_hi_attachment Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,083 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_hi_attachment Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,083 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_hi_attachmentMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:43:56,083 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_hi_commentGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:43:56,083 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_hi_commentSELECT * FROM act_hi_comment Where 0=1 +¼ʱ䣺2025-02-16 15:43:56,084 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_hi_comment Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,084 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_comment Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,084 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_comment Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,085 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_hi_comment Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,085 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_hi_comment Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,086 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_hi_commentMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:43:56,086 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_hi_detailGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:43:56,086 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_hi_detailSELECT * FROM act_hi_detail Where 0=1 +¼ʱ䣺2025-02-16 15:43:56,086 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_hi_detail Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,086 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_detail Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,087 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_detail Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,088 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_hi_detail Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,089 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_hi_detail Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,089 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_hi_detailMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:43:56,089 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_hi_identitylinkGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:43:56,089 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_hi_identitylinkSELECT * FROM act_hi_identitylink Where 0=1 +¼ʱ䣺2025-02-16 15:43:56,089 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_hi_identitylink Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,089 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_identitylink Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,089 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_identitylink Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,091 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_hi_identitylink Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,091 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_hi_identitylink Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,091 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_hi_identitylinkMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:43:56,091 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_hi_procinstGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:43:56,091 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_hi_procinstSELECT * FROM act_hi_procinst Where 0=1 +¼ʱ䣺2025-02-16 15:43:56,092 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_hi_procinst Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,092 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_procinst Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,092 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_procinst Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,094 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_hi_procinst Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,094 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_hi_procinst Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,094 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_hi_procinstMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:43:56,094 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_hi_taskinstGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:43:56,094 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_hi_taskinstSELECT * FROM act_hi_taskinst Where 0=1 +¼ʱ䣺2025-02-16 15:43:56,095 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_hi_taskinst Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,095 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_taskinst Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,095 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_taskinst Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,097 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_hi_taskinst Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,097 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_hi_taskinst Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,097 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_hi_taskinstMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:43:56,097 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_hi_varinstGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:43:56,097 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_hi_varinstSELECT * FROM act_hi_varinst Where 0=1 +¼ʱ䣺2025-02-16 15:43:56,098 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_hi_varinst Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,098 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_varinst Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,098 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_varinst Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,100 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_hi_varinst Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,100 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_hi_varinst Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,101 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_hi_varinstMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:43:56,101 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_id_groupGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:43:56,101 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_id_groupSELECT * FROM act_id_group Where 0=1 +¼ʱ䣺2025-02-16 15:43:56,101 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_id_group Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,101 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_id_group Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,101 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_id_group Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,103 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_id_group Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,103 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_id_group Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,103 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_id_groupMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:43:56,103 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_id_infoGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:43:56,103 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_id_infoSELECT * FROM act_id_info Where 0=1 +¼ʱ䣺2025-02-16 15:43:56,103 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_id_info Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,104 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_id_info Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,104 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_id_info Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,105 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_id_info Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,105 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_id_info Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,105 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_id_infoMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:43:56,105 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_id_membershipGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:43:56,106 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_id_membershipSELECT * FROM act_id_membership Where 0=1 +¼ʱ䣺2025-02-16 15:43:56,106 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_id_membership Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,106 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_id_membership Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,106 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_id_membership Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,108 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_id_membership Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,108 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_id_membership Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,108 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_id_membershipMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:43:56,108 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_id_userGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:43:56,108 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_id_userSELECT * FROM act_id_user Where 0=1 +¼ʱ䣺2025-02-16 15:43:56,109 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_id_user Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,109 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_id_user Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,109 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_id_user Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,110 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_id_user Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,110 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_id_user Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,111 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_id_userMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:43:56,111 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_re_deploymentGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:43:56,111 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_re_deploymentSELECT * FROM act_re_deployment Where 0=1 +¼ʱ䣺2025-02-16 15:43:56,111 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_re_deployment Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,111 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_re_deployment Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,111 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_re_deployment Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,113 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_re_deployment Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,113 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_re_deployment Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,113 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_re_deploymentMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:43:56,113 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_re_modelGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:43:56,113 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_re_modelSELECT * FROM act_re_model Where 0=1 +¼ʱ䣺2025-02-16 15:43:56,114 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_re_model Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,114 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_re_model Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,114 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_re_model Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,115 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_re_model Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,116 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_re_model Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,116 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_re_modelMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:43:56,116 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_re_procdefGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:43:56,116 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_re_procdefSELECT * FROM act_re_procdef Where 0=1 +¼ʱ䣺2025-02-16 15:43:56,116 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_re_procdef Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,117 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_re_procdef Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,117 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_re_procdef Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,118 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_re_procdef Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,119 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_re_procdef Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,119 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_re_procdefMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:43:56,119 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_ru_event_subscrGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:43:56,119 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_ru_event_subscrSELECT * FROM act_ru_event_subscr Where 0=1 +¼ʱ䣺2025-02-16 15:43:56,119 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_ru_event_subscr Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,119 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ru_event_subscr Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,119 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ru_event_subscr Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,121 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_ru_event_subscr Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,121 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_ru_event_subscr Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,121 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_ru_event_subscrMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:43:56,121 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_ru_executionGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:43:56,122 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_ru_executionSELECT * FROM act_ru_execution Where 0=1 +¼ʱ䣺2025-02-16 15:43:56,122 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_ru_execution Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,122 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ru_execution Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,122 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ru_execution Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,124 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_ru_execution Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,124 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_ru_execution Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,124 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_ru_executionMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:43:56,124 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_ru_identitylinkGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:43:56,124 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_ru_identitylinkSELECT * FROM act_ru_identitylink Where 0=1 +¼ʱ䣺2025-02-16 15:43:56,124 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_ru_identitylink Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,124 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ru_identitylink Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,124 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ru_identitylink Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,126 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_ru_identitylink Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,126 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_ru_identitylink Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,126 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_ru_identitylinkMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:43:56,126 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_ru_jobGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:43:56,126 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_ru_jobSELECT * FROM act_ru_job Where 0=1 +¼ʱ䣺2025-02-16 15:43:56,127 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_ru_job Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,127 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ru_job Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,127 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ru_job Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,128 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_ru_job Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,128 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_ru_job Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,129 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_ru_jobMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:43:56,129 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_ru_taskGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:43:56,129 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_ru_taskSELECT * FROM act_ru_task Where 0=1 +¼ʱ䣺2025-02-16 15:43:56,129 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_ru_task Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,129 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ru_task Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,129 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ru_task Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,131 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_ru_task Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,131 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_ru_task Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,131 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_ru_taskMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:43:56,131 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_ru_variableGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:43:56,131 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_ru_variableSELECT * FROM act_ru_variable Where 0=1 +¼ʱ䣺2025-02-16 15:43:56,132 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_ru_variable Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,132 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ru_variable Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,132 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ru_variable Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,133 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_ru_variable Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,133 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_ru_variable Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,133 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_ru_variableMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:43:56,133 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_ashGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:43:56,133 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_ashSELECT * FROM cnas_analysis_ash Where 0=1 +¼ʱ䣺2025-02-16 15:43:56,133 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_ash Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,133 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_ash Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,134 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_ash Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,135 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_ash Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,135 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_ash Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,135 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_ashMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:43:56,136 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_ashdtlGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:43:56,136 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_ashdtlSELECT * FROM cnas_analysis_ashdtl Where 0=1 +¼ʱ䣺2025-02-16 15:43:56,136 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_ashdtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,136 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_ashdtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,136 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_ashdtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,137 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_ashdtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,138 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_ashdtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,138 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_ashdtlMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:43:56,138 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_autoGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:43:56,138 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_autoSELECT * FROM cnas_analysis_auto Where 0=1 +¼ʱ䣺2025-02-16 15:43:56,138 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_auto Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,138 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_auto Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,138 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_auto Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,140 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_auto Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,140 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_auto Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,140 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_autoMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:43:56,140 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_autodtlGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:43:56,140 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_autodtlSELECT * FROM cnas_analysis_autodtl Where 0=1 +¼ʱ䣺2025-02-16 15:43:56,141 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_autodtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,141 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_autodtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,141 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_autodtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,142 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_autodtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,142 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_autodtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,143 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_autodtlMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:43:56,143 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_calorificGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:43:56,143 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_calorificSELECT * FROM cnas_analysis_calorific Where 0=1 +¼ʱ䣺2025-02-16 15:43:56,143 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_calorific Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,143 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_calorific Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,143 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_calorific Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,145 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_calorific Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,145 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_calorific Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,145 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_calorificMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:43:56,145 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_calorificdtlGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:43:56,145 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_calorificdtlSELECT * FROM cnas_analysis_calorificdtl Where 0=1 +¼ʱ䣺2025-02-16 15:43:56,146 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_calorificdtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,146 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_calorificdtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,146 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_calorificdtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,147 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_calorificdtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,147 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_calorificdtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,147 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_calorificdtlMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:43:56,148 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_capacityGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:43:56,148 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_capacitySELECT * FROM cnas_analysis_capacity Where 0=1 +¼ʱ䣺2025-02-16 15:43:56,148 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_capacity Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,148 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_capacity Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,148 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_capacity Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,150 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_capacity Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,150 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_capacity Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,150 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_capacityMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:43:56,150 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_capacitydtlGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:43:56,150 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_capacitydtlSELECT * FROM cnas_analysis_capacitydtl Where 0=1 +¼ʱ䣺2025-02-16 15:43:56,151 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_capacitydtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,151 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_capacitydtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,151 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_capacitydtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,152 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_capacitydtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,152 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_capacitydtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,153 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_capacitydtlMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:43:56,153 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_chnGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:43:56,153 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_chnSELECT * FROM cnas_analysis_chn Where 0=1 +¼ʱ䣺2025-02-16 15:43:56,153 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_chn Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,153 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_chn Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,153 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_chn Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,155 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_chn Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,155 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_chn Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,155 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_chnMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:43:56,155 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_chndtlGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:43:56,155 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_chndtlSELECT * FROM cnas_analysis_chndtl Where 0=1 +¼ʱ䣺2025-02-16 15:43:56,155 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_chndtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,156 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_chndtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,156 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_chndtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,157 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_chndtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,157 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_chndtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,157 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_chndtlMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:43:56,157 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_moistureGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:43:56,157 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_moistureSELECT * FROM cnas_analysis_moisture Where 0=1 +¼ʱ䣺2025-02-16 15:43:56,158 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_moisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,158 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_moisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,158 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_moisture Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,159 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_moisture Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,160 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_moisture Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,160 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_moistureMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:43:56,160 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_moisturedtlGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:43:56,160 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_moisturedtlSELECT * FROM cnas_analysis_moisturedtl Where 0=1 +¼ʱ䣺2025-02-16 15:43:56,160 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_moisturedtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,160 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_moisturedtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,160 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_moisturedtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,162 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_moisturedtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,162 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_moisturedtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,162 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_moisturedtlMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:43:56,162 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_stadGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:43:56,162 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_stadSELECT * FROM cnas_analysis_stad Where 0=1 +¼ʱ䣺2025-02-16 15:43:56,162 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_stad Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,162 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_stad Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,163 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_stad Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,164 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_stad Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,164 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_stad Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,164 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_stadMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:43:56,164 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_staddtlGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:43:56,164 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_staddtlSELECT * FROM cnas_analysis_staddtl Where 0=1 +¼ʱ䣺2025-02-16 15:43:56,165 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_staddtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,165 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_staddtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,165 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_staddtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,167 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_staddtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,167 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_staddtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,167 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_staddtlMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:43:56,167 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_totalmoistureGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:43:56,167 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_totalmoistureSELECT * FROM cnas_analysis_totalmoisture Where 0=1 +¼ʱ䣺2025-02-16 15:43:56,167 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_totalmoisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,167 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_totalmoisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,168 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_totalmoisture Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,169 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_totalmoisture Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,169 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_totalmoisture Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,169 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:43:56,169 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_totalmoisturedtlGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:43:56,170 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_totalmoisturedtlSELECT * FROM cnas_analysis_totalmoisturedtl Where 0=1 +¼ʱ䣺2025-02-16 15:43:56,170 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_totalmoisturedtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,170 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_totalmoisturedtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,170 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_totalmoisturedtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,171 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_totalmoisturedtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,172 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_totalmoisturedtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,172 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_totalmoisturedtlMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:43:56,172 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_volatileGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:43:56,172 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_volatileSELECT * FROM cnas_analysis_volatile Where 0=1 +¼ʱ䣺2025-02-16 15:43:56,172 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_volatile Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,172 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_volatile Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,172 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_volatile Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,174 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_volatile Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,174 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_volatile Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,174 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_volatileMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:43:56,174 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_volatiledtlGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:43:56,174 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_volatiledtlSELECT * FROM cnas_analysis_volatiledtl Where 0=1 +¼ʱ䣺2025-02-16 15:43:56,175 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_volatiledtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,175 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_volatiledtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,175 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_volatiledtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,176 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_volatiledtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,176 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_volatiledtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,176 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_volatiledtlMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:43:56,177 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_deviceGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:43:56,177 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_deviceSELECT * FROM cnas_device Where 0=1 +¼ʱ䣺2025-02-16 15:43:56,177 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_device Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,177 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_device Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,177 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_device Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,178 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_device Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,179 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_device Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,179 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_deviceMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:43:56,179 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_facilityGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:43:56,179 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_facilitySELECT * FROM cnas_facility Where 0=1 +¼ʱ䣺2025-02-16 15:43:56,179 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_facility Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,179 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_facility Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,179 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_facility Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,181 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_facility Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,181 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_facility Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,181 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_facilityMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:43:56,181 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_sampleGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:43:56,181 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_sampleSELECT * FROM cnas_sample Where 0=1 +¼ʱ䣺2025-02-16 15:43:56,182 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_sample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,182 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_sample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,182 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_sample Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,184 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_sample Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,184 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_sample Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,184 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_sampleMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:43:56,184 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_staffGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:43:56,184 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_staffSELECT * FROM cnas_staff Where 0=1 +¼ʱ䣺2025-02-16 15:43:56,185 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_staff Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,185 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_staff Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,185 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_staff Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,186 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_staff Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,186 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_staff Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,186 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_staffMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:43:56,187 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_result_ikaGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:43:56,187 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_result_ikaSELECT * FROM coalweight_analysis_result_ika Where 0=1 +¼ʱ䣺2025-02-16 15:43:56,187 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM coalweight_analysis_result_ika Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,187 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalweight_analysis_result_ika Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,187 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalweight_analysis_result_ika Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,189 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalweight_analysis_result_ika Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,189 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalweight_analysis_result_ika Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,189 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_result_ikaMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:43:56,189 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dictGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:43:56,189 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dictSELECT * FROM dict Where 0=1 +¼ʱ䣺2025-02-16 15:43:56,189 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM dict Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,189 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM dict Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,190 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM dict Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,191 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM dict Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,191 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM dict Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,191 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dictMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:43:56,191 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===esb_tableGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:43:56,191 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===esb_tableSELECT * FROM esb_table Where 0=1 +¼ʱ䣺2025-02-16 15:43:56,192 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM esb_table Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,192 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM esb_table Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,192 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM esb_table Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,193 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM esb_table Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,194 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM esb_table Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,194 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===esb_tableMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:43:56,194 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:43:56,194 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileSELECT * FROM file Where 0=1 +¼ʱ䣺2025-02-16 15:43:56,194 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM file Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,194 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM file Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,194 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM file Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,195 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM file Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,195 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM file Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,196 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:43:56,196 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===flowtableGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:43:56,196 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===flowtableSELECT * FROM flowtable Where 0=1 +¼ʱ䣺2025-02-16 15:43:56,196 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM flowtable Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,196 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM flowtable Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,196 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM flowtable Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,197 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM flowtable Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,198 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM flowtable Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,198 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===flowtableMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:43:56,198 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===menuGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:43:56,198 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===menuSELECT * FROM menu Where 0=1 +¼ʱ䣺2025-02-16 15:43:56,198 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM menu Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,198 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM menu Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,198 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM menu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,200 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM menu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,200 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM menu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,200 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===menuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:43:56,200 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===orgGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:43:56,200 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===orgSELECT * FROM org Where 0=1 +¼ʱ䣺2025-02-16 15:43:56,200 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM org Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,200 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM org Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,201 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM org Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,202 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM org Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,206 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM org Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,206 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===orgMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:43:56,206 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===parameterGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:43:56,206 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===parameterSELECT * FROM parameter Where 0=1 +¼ʱ䣺2025-02-16 15:43:56,207 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM parameter Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,207 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM parameter Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,207 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM parameter Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,209 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM parameter Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,209 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM parameter Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,209 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===parameterMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:43:56,209 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===roleGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:43:56,209 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===roleSELECT * FROM role Where 0=1 +¼ʱ䣺2025-02-16 15:43:56,210 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM role Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,210 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM role Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,210 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM role Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,211 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM role Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,212 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM role Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,212 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===roleMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:43:56,212 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===role_menuGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:43:56,212 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===role_menuSELECT * FROM role_menu Where 0=1 +¼ʱ䣺2025-02-16 15:43:56,212 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM role_menu Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,212 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM role_menu Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,212 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM role_menu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,214 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM role_menu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,214 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM role_menu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,214 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===role_menuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:43:56,214 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===role_userGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:43:56,214 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===role_userSELECT * FROM role_user Where 0=1 +¼ʱ䣺2025-02-16 15:43:56,214 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM role_user Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,215 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM role_user Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,215 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM role_user Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,216 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM role_user Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,216 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM role_user Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,216 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===role_userMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:43:56,216 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmaterialGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:43:56,216 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmaterialSELECT * FROM standardmaterial Where 0=1 +¼ʱ䣺2025-02-16 15:43:56,217 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM standardmaterial Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,217 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardmaterial Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,217 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardmaterial Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,218 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM standardmaterial Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,219 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM standardmaterial Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,219 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmaterialMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:43:56,219 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===system_cacheGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:43:56,219 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===system_cacheSELECT * FROM system_cache Where 0=1 +¼ʱ䣺2025-02-16 15:43:56,219 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM system_cache Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,219 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM system_cache Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,220 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM system_cache Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,221 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM system_cache Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,221 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM system_cache Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,221 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===system_cacheMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:43:56,221 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tablemanagementGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:43:56,221 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tablemanagementSELECT * FROM tablemanagement Where 0=1 +¼ʱ䣺2025-02-16 15:43:56,222 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM tablemanagement Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,222 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tablemanagement Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,222 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tablemanagement Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,223 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tablemanagement Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,224 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tablemanagement Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,224 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tablemanagementMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:43:56,224 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===task_remindGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:43:56,224 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===task_remindSELECT * FROM task_remind Where 0=1 +¼ʱ䣺2025-02-16 15:43:56,224 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM task_remind Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,224 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM task_remind Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,224 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM task_remind Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,226 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM task_remind Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,226 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM task_remind Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,226 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===task_remindMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:43:56,226 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalweightetltableGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:43:56,226 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalweightetltableSELECT * FROM tcoalweightetltable Where 0=1 +¼ʱ䣺2025-02-16 15:43:56,227 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM tcoalweightetltable Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,227 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalweightetltable Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,227 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalweightetltable Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,229 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tcoalweightetltable Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,229 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tcoalweightetltable Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,229 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalweightetltableMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:43:56,229 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:43:56,229 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testSELECT * FROM test Where 0=1 +¼ʱ䣺2025-02-16 15:43:56,230 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM test Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,230 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM test Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,230 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM test Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,232 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM test Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,232 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM test Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,232 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:43:56,232 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===urlGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:43:56,232 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===urlSELECT * FROM url Where 0=1 +¼ʱ䣺2025-02-16 15:43:56,232 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM url Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,233 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM url Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,233 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM url Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,234 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM url Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,234 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM url Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,234 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===urlMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:43:56,234 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===userGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:43:56,234 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===userSELECT * FROM user Where 0=1 +¼ʱ䣺2025-02-16 15:43:56,235 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM user Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,235 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM user Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,235 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM user Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,236 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM user Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,236 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM user Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,236 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===userMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:43:56,236 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===versioninfoGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:43:56,236 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===versioninfoSELECT * FROM versioninfo Where 0=1 +¼ʱ䣺2025-02-16 15:43:56,237 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM versioninfo Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,237 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM versioninfo Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,237 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM versioninfo Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,238 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM versioninfo Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,239 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM versioninfo Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,239 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===versioninfoMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:43:56,324 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,325 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,325 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,327 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,327 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,391 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-16 15:43:56,392 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,392 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:43:56,392 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,392 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,393 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:43:56,393 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,033 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='platform'server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,033 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='platform'server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,033 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='platform'System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,034 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='platform'System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,034 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='platform'System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,034 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_ge_bytearrayGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,035 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_ge_bytearraySELECT * FROM act_ge_bytearray Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,035 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_ge_bytearray Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,035 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ge_bytearray Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,035 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ge_bytearray Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,036 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_ge_bytearray Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,036 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_ge_bytearray Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,036 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_ge_bytearrayMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,036 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_ge_propertyGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,036 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_ge_propertySELECT * FROM act_ge_property Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,036 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_ge_property Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,036 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ge_property Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,037 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ge_property Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,037 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_ge_property Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,037 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_ge_property Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,037 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_ge_propertyMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,037 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_hi_actinstGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,037 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_hi_actinstSELECT * FROM act_hi_actinst Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,038 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_hi_actinst Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,038 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_actinst Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,038 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_actinst Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,038 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_hi_actinst Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,038 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_hi_actinst Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,038 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_hi_actinstMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,038 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_hi_attachmentGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,038 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_hi_attachmentSELECT * FROM act_hi_attachment Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,039 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_hi_attachment Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,039 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_attachment Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,039 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_attachment Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,039 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_hi_attachment Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,039 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_hi_attachment Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,039 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_hi_attachmentMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,039 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_hi_commentGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,040 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_hi_commentSELECT * FROM act_hi_comment Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,040 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_hi_comment Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,040 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_comment Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,040 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_comment Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,047 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_hi_comment Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,048 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_hi_comment Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,048 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_hi_commentMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,048 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_hi_detailGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,048 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_hi_detailSELECT * FROM act_hi_detail Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,049 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_hi_detail Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,049 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_detail Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,049 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_detail Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,049 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_hi_detail Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,049 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_hi_detail Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,049 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_hi_detailMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,049 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_hi_identitylinkGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,049 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_hi_identitylinkSELECT * FROM act_hi_identitylink Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,050 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_hi_identitylink Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,050 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_identitylink Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,050 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_identitylink Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,050 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_hi_identitylink Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,050 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_hi_identitylink Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,050 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_hi_identitylinkMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,050 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_hi_procinstGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,050 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_hi_procinstSELECT * FROM act_hi_procinst Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,051 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_hi_procinst Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,051 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_procinst Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,051 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_procinst Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,051 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_hi_procinst Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,051 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_hi_procinst Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,051 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_hi_procinstMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,052 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_hi_taskinstGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,052 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_hi_taskinstSELECT * FROM act_hi_taskinst Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,052 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_hi_taskinst Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,052 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_taskinst Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,052 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_taskinst Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,052 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_hi_taskinst Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,053 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_hi_taskinst Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,053 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_hi_taskinstMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,053 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_hi_varinstGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,053 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_hi_varinstSELECT * FROM act_hi_varinst Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,053 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_hi_varinst Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,053 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_varinst Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,053 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_varinst Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,054 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_hi_varinst Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,054 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_hi_varinst Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,054 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_hi_varinstMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,054 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_id_groupGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,054 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_id_groupSELECT * FROM act_id_group Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,054 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_id_group Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,054 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_id_group Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,054 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_id_group Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,055 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_id_group Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,055 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_id_group Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,055 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_id_groupMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,055 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_id_infoGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,055 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_id_infoSELECT * FROM act_id_info Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,055 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_id_info Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,055 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_id_info Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,055 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_id_info Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,056 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_id_info Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,056 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_id_info Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,056 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_id_infoMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,056 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_id_membershipGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,056 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_id_membershipSELECT * FROM act_id_membership Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,057 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_id_membership Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,057 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_id_membership Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,057 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_id_membership Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,057 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_id_membership Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,057 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_id_membership Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,057 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_id_membershipMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,057 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_id_userGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,057 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_id_userSELECT * FROM act_id_user Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,058 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_id_user Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,058 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_id_user Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,058 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_id_user Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,058 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_id_user Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,058 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_id_user Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,058 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_id_userMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,058 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_re_deploymentGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,058 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_re_deploymentSELECT * FROM act_re_deployment Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,059 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_re_deployment Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,059 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_re_deployment Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,059 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_re_deployment Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,059 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_re_deployment Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,059 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_re_deployment Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,059 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_re_deploymentMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,059 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_re_modelGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,059 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_re_modelSELECT * FROM act_re_model Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,060 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_re_model Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,060 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_re_model Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,060 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_re_model Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,060 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_re_model Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,060 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_re_model Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,060 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_re_modelMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,060 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_re_procdefGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,060 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_re_procdefSELECT * FROM act_re_procdef Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,061 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_re_procdef Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,061 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_re_procdef Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,061 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_re_procdef Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,061 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_re_procdef Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,061 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_re_procdef Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,061 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_re_procdefMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,061 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_ru_event_subscrGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,062 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_ru_event_subscrSELECT * FROM act_ru_event_subscr Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,062 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_ru_event_subscr Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,062 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ru_event_subscr Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,062 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ru_event_subscr Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,063 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_ru_event_subscr Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,063 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_ru_event_subscr Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,063 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_ru_event_subscrMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,063 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_ru_executionGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,063 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_ru_executionSELECT * FROM act_ru_execution Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,064 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_ru_execution Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,064 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ru_execution Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,064 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ru_execution Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,064 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_ru_execution Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,064 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_ru_execution Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,064 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_ru_executionMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,064 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_ru_identitylinkGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,065 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_ru_identitylinkSELECT * FROM act_ru_identitylink Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,065 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_ru_identitylink Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,065 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ru_identitylink Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,065 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ru_identitylink Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,065 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_ru_identitylink Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,066 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_ru_identitylink Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,066 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_ru_identitylinkMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,066 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_ru_jobGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,066 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_ru_jobSELECT * FROM act_ru_job Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,066 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_ru_job Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,066 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ru_job Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,066 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ru_job Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,067 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_ru_job Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,067 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_ru_job Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,067 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_ru_jobMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,067 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_ru_taskGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,067 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_ru_taskSELECT * FROM act_ru_task Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,068 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_ru_task Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,068 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ru_task Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,068 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ru_task Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,068 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_ru_task Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,068 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_ru_task Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,068 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_ru_taskMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,068 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_ru_variableGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,068 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_ru_variableSELECT * FROM act_ru_variable Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,069 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_ru_variable Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,069 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ru_variable Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,069 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ru_variable Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,069 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_ru_variable Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,069 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_ru_variable Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,069 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_ru_variableMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,070 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_ashGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,070 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_ashSELECT * FROM cnas_analysis_ash Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,070 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_ash Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,070 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_ash Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,070 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_ash Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,071 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_ash Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,071 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_ash Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,071 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_ashMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,071 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_ashdtlGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,071 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_ashdtlSELECT * FROM cnas_analysis_ashdtl Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,071 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_ashdtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,071 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_ashdtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,071 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_ashdtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,072 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_ashdtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,072 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_ashdtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,072 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_ashdtlMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,072 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_autoGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,072 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_autoSELECT * FROM cnas_analysis_auto Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,072 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_auto Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,073 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_auto Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,073 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_auto Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,073 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_auto Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,073 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_auto Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,073 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_autoMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,073 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_autodtlGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,073 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_autodtlSELECT * FROM cnas_analysis_autodtl Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,074 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_autodtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,074 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_autodtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,074 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_autodtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,074 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_autodtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,074 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_autodtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,074 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_autodtlMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,074 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_calorificGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,075 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_calorificSELECT * FROM cnas_analysis_calorific Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,075 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_calorific Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,075 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_calorific Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,075 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_calorific Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,076 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_calorific Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,076 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_calorific Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,076 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_calorificMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,076 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_calorificdtlGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,076 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_calorificdtlSELECT * FROM cnas_analysis_calorificdtl Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,076 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_calorificdtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,076 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_calorificdtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,076 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_calorificdtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,077 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_calorificdtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,077 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_calorificdtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,077 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_calorificdtlMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,077 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_capacityGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,077 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_capacitySELECT * FROM cnas_analysis_capacity Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,078 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_capacity Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,078 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_capacity Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,078 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_capacity Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,078 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_capacity Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,078 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_capacity Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,078 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_capacityMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,078 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_capacitydtlGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,079 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_capacitydtlSELECT * FROM cnas_analysis_capacitydtl Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,079 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_capacitydtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,079 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_capacitydtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,079 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_capacitydtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,079 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_capacitydtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,080 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_capacitydtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,080 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_capacitydtlMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,080 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_chnGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,080 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_chnSELECT * FROM cnas_analysis_chn Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,080 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_chn Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,080 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_chn Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,080 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_chn Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,081 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_chn Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,081 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_chn Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,081 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_chnMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,081 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_chndtlGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,081 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_chndtlSELECT * FROM cnas_analysis_chndtl Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,082 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_chndtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,082 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_chndtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,082 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_chndtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,082 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_chndtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,082 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_chndtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,082 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_chndtlMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,082 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_moistureGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,083 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_moistureSELECT * FROM cnas_analysis_moisture Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,083 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_moisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,083 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_moisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,083 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_moisture Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,084 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_moisture Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,084 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_moisture Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,084 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_moistureMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,084 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_moisturedtlGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,084 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_moisturedtlSELECT * FROM cnas_analysis_moisturedtl Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,085 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_moisturedtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,085 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_moisturedtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,085 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_moisturedtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,085 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_moisturedtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,086 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_moisturedtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,086 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_moisturedtlMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,086 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_stadGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,086 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_stadSELECT * FROM cnas_analysis_stad Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,086 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_stad Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,087 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_stad Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,087 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_stad Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,087 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_stad Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,087 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_stad Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,087 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_stadMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,087 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_staddtlGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,087 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_staddtlSELECT * FROM cnas_analysis_staddtl Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,088 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_staddtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,088 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_staddtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,088 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_staddtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,088 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_staddtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,088 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_staddtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,088 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_staddtlMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,089 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_totalmoistureGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,089 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_totalmoistureSELECT * FROM cnas_analysis_totalmoisture Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,089 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_totalmoisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,089 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_totalmoisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,089 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_totalmoisture Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,090 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_totalmoisture Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,090 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_totalmoisture Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,090 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,090 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_totalmoisturedtlGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,090 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_totalmoisturedtlSELECT * FROM cnas_analysis_totalmoisturedtl Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,090 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_totalmoisturedtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,090 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_totalmoisturedtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,090 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_totalmoisturedtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,091 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_totalmoisturedtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,091 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_totalmoisturedtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,091 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_totalmoisturedtlMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,091 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_volatileGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,091 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_volatileSELECT * FROM cnas_analysis_volatile Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,091 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_volatile Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,092 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_volatile Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,092 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_volatile Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,092 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_volatile Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,092 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_volatile Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,092 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_volatileMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,092 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_volatiledtlGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,092 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_volatiledtlSELECT * FROM cnas_analysis_volatiledtl Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,093 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_volatiledtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,093 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_volatiledtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,093 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_volatiledtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,093 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_volatiledtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,094 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_volatiledtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,094 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_volatiledtlMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,094 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_deviceGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,094 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_deviceSELECT * FROM cnas_device Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,094 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_device Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,094 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_device Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,094 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_device Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,095 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_device Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,095 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_device Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,095 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_deviceMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,095 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_facilityGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,095 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_facilitySELECT * FROM cnas_facility Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,095 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_facility Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,095 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_facility Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,095 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_facility Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,096 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_facility Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,096 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_facility Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,096 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_facilityMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,096 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_sampleGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,096 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_sampleSELECT * FROM cnas_sample Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,096 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_sample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,096 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_sample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,097 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_sample Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,097 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_sample Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,097 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_sample Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,097 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_sampleMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,097 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_staffGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,097 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_staffSELECT * FROM cnas_staff Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,098 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_staff Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,098 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_staff Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,098 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_staff Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,098 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_staff Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,098 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_staff Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,098 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_staffMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,098 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_result_ikaGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,098 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_result_ikaSELECT * FROM coalweight_analysis_result_ika Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,099 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM coalweight_analysis_result_ika Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,099 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalweight_analysis_result_ika Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,099 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalweight_analysis_result_ika Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,099 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalweight_analysis_result_ika Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,099 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalweight_analysis_result_ika Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,099 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_result_ikaMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,099 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dictGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,100 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dictSELECT * FROM dict Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,100 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM dict Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,100 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM dict Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,100 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM dict Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,100 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM dict Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,100 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM dict Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,101 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dictMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,101 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===esb_tableGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,101 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===esb_tableSELECT * FROM esb_table Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,101 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM esb_table Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,101 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM esb_table Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,101 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM esb_table Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,101 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM esb_table Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,102 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM esb_table Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,102 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===esb_tableMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,102 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,102 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileSELECT * FROM file Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,102 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM file Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,102 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM file Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,102 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM file Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,103 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM file Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,103 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM file Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,103 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,103 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===flowtableGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,103 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===flowtableSELECT * FROM flowtable Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,103 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM flowtable Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,103 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM flowtable Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,104 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM flowtable Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,104 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM flowtable Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,104 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM flowtable Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,104 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===flowtableMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,104 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===menuGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,104 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===menuSELECT * FROM menu Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,104 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM menu Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,105 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM menu Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,105 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM menu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,105 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM menu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,105 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM menu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,105 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===menuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,105 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===orgGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,105 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===orgSELECT * FROM org Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,106 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM org Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,106 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM org Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,106 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM org Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,106 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM org Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,106 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM org Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,106 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===orgMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,106 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===parameterGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,106 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===parameterSELECT * FROM parameter Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,107 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM parameter Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,107 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM parameter Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,107 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM parameter Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,107 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM parameter Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,107 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM parameter Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,107 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===parameterMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,108 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===roleGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,108 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===roleSELECT * FROM role Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,108 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM role Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,108 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM role Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,108 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM role Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,108 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM role Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,109 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM role Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,109 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===roleMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,109 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===role_menuGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,109 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===role_menuSELECT * FROM role_menu Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,109 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM role_menu Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,109 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM role_menu Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,109 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM role_menu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,109 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM role_menu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,110 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM role_menu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,110 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===role_menuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,110 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===role_userGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,110 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===role_userSELECT * FROM role_user Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,110 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM role_user Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,110 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM role_user Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,110 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM role_user Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,111 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM role_user Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,111 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM role_user Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,111 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===role_userMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,111 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmaterialGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,111 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmaterialSELECT * FROM standardmaterial Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,111 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM standardmaterial Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,111 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardmaterial Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,111 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardmaterial Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,112 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM standardmaterial Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,112 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM standardmaterial Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,112 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmaterialMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,112 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===system_cacheGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,112 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===system_cacheSELECT * FROM system_cache Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,113 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM system_cache Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,113 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM system_cache Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,113 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM system_cache Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,113 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM system_cache Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,113 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM system_cache Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,113 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===system_cacheMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,113 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tablemanagementGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,113 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tablemanagementSELECT * FROM tablemanagement Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,114 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM tablemanagement Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,114 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tablemanagement Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,114 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tablemanagement Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,114 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tablemanagement Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,114 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tablemanagement Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,114 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tablemanagementMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,114 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===task_remindGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,115 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===task_remindSELECT * FROM task_remind Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,115 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM task_remind Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,115 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM task_remind Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,115 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM task_remind Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,115 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM task_remind Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,116 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM task_remind Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,116 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===task_remindMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,116 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalweightetltableGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,116 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalweightetltableSELECT * FROM tcoalweightetltable Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,116 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM tcoalweightetltable Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,116 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalweightetltable Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,116 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalweightetltable Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,117 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tcoalweightetltable Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,117 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tcoalweightetltable Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,117 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalweightetltableMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,117 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,117 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testSELECT * FROM test Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,117 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM test Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,117 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM test Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,118 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM test Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,118 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM test Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,118 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM test Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,118 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,118 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===urlGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,118 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===urlSELECT * FROM url Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,119 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM url Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,119 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM url Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,119 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM url Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,119 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM url Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,119 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM url Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,119 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===urlMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,119 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===userGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,119 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===userSELECT * FROM user Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,120 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM user Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,120 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM user Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,120 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM user Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,120 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM user Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,120 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM user Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,120 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===userMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,120 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===versioninfoGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,120 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===versioninfoSELECT * FROM versioninfo Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,120 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM versioninfo Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,120 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM versioninfo Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,121 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM versioninfo Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,121 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM versioninfo Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,121 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM versioninfo Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,121 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===versioninfoMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,181 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,181 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,181 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,183 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,183 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,236 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,236 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,236 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,237 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,237 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,237 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,237 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,667 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='platform'server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,667 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='platform'server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,667 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='platform'System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,669 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='platform'System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,669 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='platform'System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,669 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_ge_bytearrayGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,669 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_ge_bytearraySELECT * FROM act_ge_bytearray Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,669 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_ge_bytearray Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,669 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ge_bytearray Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,669 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ge_bytearray Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,670 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_ge_bytearray Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,670 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_ge_bytearray Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,670 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_ge_bytearrayMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,670 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_ge_propertyGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,670 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_ge_propertySELECT * FROM act_ge_property Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,670 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_ge_property Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,671 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ge_property Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,671 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ge_property Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,671 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_ge_property Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,671 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_ge_property Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,671 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_ge_propertyMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,671 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_hi_actinstGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,671 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_hi_actinstSELECT * FROM act_hi_actinst Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,672 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_hi_actinst Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,672 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_actinst Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,672 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_actinst Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,672 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_hi_actinst Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,672 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_hi_actinst Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,672 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_hi_actinstMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,672 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_hi_attachmentGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,672 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_hi_attachmentSELECT * FROM act_hi_attachment Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,673 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_hi_attachment Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,673 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_attachment Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,673 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_attachment Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,676 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_hi_attachment Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,676 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_hi_attachment Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,676 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_hi_attachmentMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,676 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_hi_commentGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,677 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_hi_commentSELECT * FROM act_hi_comment Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,677 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_hi_comment Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,677 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_comment Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,677 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_comment Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,677 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_hi_comment Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,677 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_hi_comment Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,678 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_hi_commentMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,678 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_hi_detailGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,678 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_hi_detailSELECT * FROM act_hi_detail Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,678 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_hi_detail Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,678 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_detail Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,678 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_detail Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,678 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_hi_detail Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,678 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_hi_detail Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,678 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_hi_detailMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,678 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_hi_identitylinkGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,678 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_hi_identitylinkSELECT * FROM act_hi_identitylink Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,679 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_hi_identitylink Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,679 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_identitylink Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,679 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_identitylink Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,679 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_hi_identitylink Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,679 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_hi_identitylink Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,679 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_hi_identitylinkMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,679 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_hi_procinstGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,679 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_hi_procinstSELECT * FROM act_hi_procinst Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,680 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_hi_procinst Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,680 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_procinst Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,680 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_procinst Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,680 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_hi_procinst Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,680 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_hi_procinst Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,680 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_hi_procinstMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,680 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_hi_taskinstGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,680 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_hi_taskinstSELECT * FROM act_hi_taskinst Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,681 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_hi_taskinst Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,681 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_taskinst Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,681 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_taskinst Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,681 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_hi_taskinst Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,681 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_hi_taskinst Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,681 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_hi_taskinstMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,682 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_hi_varinstGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,682 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_hi_varinstSELECT * FROM act_hi_varinst Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,682 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_hi_varinst Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,682 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_varinst Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,682 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_varinst Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,682 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_hi_varinst Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,682 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_hi_varinst Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,683 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_hi_varinstMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,683 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_id_groupGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,683 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_id_groupSELECT * FROM act_id_group Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,683 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_id_group Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,683 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_id_group Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,683 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_id_group Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,683 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_id_group Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,684 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_id_group Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,684 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_id_groupMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,684 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_id_infoGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,684 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_id_infoSELECT * FROM act_id_info Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,684 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_id_info Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,684 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_id_info Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,684 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_id_info Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,685 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_id_info Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,685 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_id_info Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,685 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_id_infoMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,685 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_id_membershipGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,685 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_id_membershipSELECT * FROM act_id_membership Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,685 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_id_membership Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,685 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_id_membership Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,685 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_id_membership Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,686 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_id_membership Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,686 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_id_membership Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,686 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_id_membershipMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,686 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_id_userGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,686 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_id_userSELECT * FROM act_id_user Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,686 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_id_user Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,686 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_id_user Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,686 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_id_user Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,687 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_id_user Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,687 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_id_user Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,687 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_id_userMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,687 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_re_deploymentGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,687 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_re_deploymentSELECT * FROM act_re_deployment Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,687 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_re_deployment Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,687 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_re_deployment Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,688 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_re_deployment Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,688 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_re_deployment Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,688 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_re_deployment Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,688 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_re_deploymentMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,688 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_re_modelGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,688 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_re_modelSELECT * FROM act_re_model Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,689 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_re_model Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,689 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_re_model Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,689 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_re_model Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,689 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_re_model Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,689 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_re_model Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,689 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_re_modelMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,689 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_re_procdefGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,689 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_re_procdefSELECT * FROM act_re_procdef Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,690 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_re_procdef Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,690 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_re_procdef Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,690 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_re_procdef Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,690 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_re_procdef Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,690 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_re_procdef Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,690 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_re_procdefMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,690 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_ru_event_subscrGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,690 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_ru_event_subscrSELECT * FROM act_ru_event_subscr Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,691 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_ru_event_subscr Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,691 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ru_event_subscr Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,691 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ru_event_subscr Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,691 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_ru_event_subscr Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,691 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_ru_event_subscr Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,691 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_ru_event_subscrMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,691 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_ru_executionGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,691 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_ru_executionSELECT * FROM act_ru_execution Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,692 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_ru_execution Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,692 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ru_execution Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,692 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ru_execution Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,692 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_ru_execution Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,692 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_ru_execution Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,692 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_ru_executionMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,693 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_ru_identitylinkGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,693 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_ru_identitylinkSELECT * FROM act_ru_identitylink Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,693 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_ru_identitylink Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,693 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ru_identitylink Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,693 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ru_identitylink Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,693 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_ru_identitylink Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,694 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_ru_identitylink Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,694 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_ru_identitylinkMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,694 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_ru_jobGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,694 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_ru_jobSELECT * FROM act_ru_job Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,694 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_ru_job Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,694 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ru_job Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,694 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ru_job Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,695 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_ru_job Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,695 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_ru_job Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,695 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_ru_jobMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,695 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_ru_taskGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,695 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_ru_taskSELECT * FROM act_ru_task Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,695 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_ru_task Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,695 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ru_task Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,695 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ru_task Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,696 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_ru_task Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,696 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_ru_task Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,696 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_ru_taskMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,696 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_ru_variableGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,696 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_ru_variableSELECT * FROM act_ru_variable Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,696 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_ru_variable Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,696 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ru_variable Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,697 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ru_variable Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,697 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_ru_variable Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,697 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_ru_variable Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,697 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_ru_variableMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,697 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_ashGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,697 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_ashSELECT * FROM cnas_analysis_ash Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,698 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_ash Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,698 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_ash Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,698 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_ash Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,698 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_ash Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,698 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_ash Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,698 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_ashMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,698 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_ashdtlGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,698 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_ashdtlSELECT * FROM cnas_analysis_ashdtl Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,699 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_ashdtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,699 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_ashdtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,699 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_ashdtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,699 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_ashdtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,699 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_ashdtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,699 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_ashdtlMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,699 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_autoGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,700 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_autoSELECT * FROM cnas_analysis_auto Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,700 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_auto Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,700 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_auto Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,700 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_auto Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,700 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_auto Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,701 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_auto Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,701 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_autoMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,701 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_autodtlGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,701 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_autodtlSELECT * FROM cnas_analysis_autodtl Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,701 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_autodtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,701 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_autodtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,701 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_autodtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,701 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_autodtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,702 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_autodtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,702 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_autodtlMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,702 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_calorificGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,702 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_calorificSELECT * FROM cnas_analysis_calorific Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,702 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_calorific Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,702 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_calorific Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,702 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_calorific Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,703 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_calorific Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,703 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_calorific Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,703 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_calorificMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,703 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_calorificdtlGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,703 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_calorificdtlSELECT * FROM cnas_analysis_calorificdtl Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,704 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_calorificdtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,704 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_calorificdtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,704 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_calorificdtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,704 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_calorificdtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,704 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_calorificdtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,704 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_calorificdtlMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,704 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_capacityGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,704 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_capacitySELECT * FROM cnas_analysis_capacity Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,705 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_capacity Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,705 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_capacity Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,705 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_capacity Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,705 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_capacity Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,705 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_capacity Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,705 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_capacityMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,706 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_capacitydtlGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,706 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_capacitydtlSELECT * FROM cnas_analysis_capacitydtl Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,706 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_capacitydtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,706 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_capacitydtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,706 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_capacitydtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,706 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_capacitydtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,707 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_capacitydtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,707 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_capacitydtlMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,707 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_chnGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,707 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_chnSELECT * FROM cnas_analysis_chn Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,707 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_chn Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,707 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_chn Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,707 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_chn Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,708 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_chn Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,708 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_chn Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,708 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_chnMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,708 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_chndtlGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,708 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_chndtlSELECT * FROM cnas_analysis_chndtl Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,709 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_chndtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,709 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_chndtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,709 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_chndtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,709 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_chndtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,709 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_chndtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,709 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_chndtlMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,709 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_moistureGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,709 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_moistureSELECT * FROM cnas_analysis_moisture Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,710 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_moisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,710 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_moisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,710 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_moisture Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,710 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_moisture Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,710 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_moisture Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,710 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_moistureMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,711 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_moisturedtlGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,711 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_moisturedtlSELECT * FROM cnas_analysis_moisturedtl Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,711 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_moisturedtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,711 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_moisturedtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,711 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_moisturedtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,711 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_moisturedtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,712 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_moisturedtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,712 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_moisturedtlMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,712 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_stadGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,712 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_stadSELECT * FROM cnas_analysis_stad Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,712 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_stad Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,712 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_stad Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,712 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_stad Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,713 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_stad Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,713 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_stad Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,713 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_stadMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,713 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_staddtlGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,713 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_staddtlSELECT * FROM cnas_analysis_staddtl Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,713 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_staddtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,713 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_staddtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,714 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_staddtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,714 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_staddtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,714 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_staddtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,714 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_staddtlMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,714 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_totalmoistureGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,714 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_totalmoistureSELECT * FROM cnas_analysis_totalmoisture Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,714 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_totalmoisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,715 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_totalmoisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,715 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_totalmoisture Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,715 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_totalmoisture Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,715 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_totalmoisture Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,715 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,715 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_totalmoisturedtlGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,715 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_totalmoisturedtlSELECT * FROM cnas_analysis_totalmoisturedtl Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,716 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_totalmoisturedtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,716 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_totalmoisturedtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,716 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_totalmoisturedtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,716 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_totalmoisturedtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,716 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_totalmoisturedtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,716 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_totalmoisturedtlMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,716 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_volatileGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,716 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_volatileSELECT * FROM cnas_analysis_volatile Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,717 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_volatile Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,717 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_volatile Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,717 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_volatile Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,717 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_volatile Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,718 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_volatile Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,718 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_volatileMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,718 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_volatiledtlGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,718 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_volatiledtlSELECT * FROM cnas_analysis_volatiledtl Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,718 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_volatiledtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,718 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_volatiledtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,718 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_volatiledtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,718 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_volatiledtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,719 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_volatiledtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,719 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_volatiledtlMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,719 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_deviceGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,719 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_deviceSELECT * FROM cnas_device Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,719 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_device Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,719 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_device Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,719 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_device Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,720 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_device Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,720 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_device Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,720 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_deviceMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,720 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_facilityGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,720 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_facilitySELECT * FROM cnas_facility Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,720 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_facility Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,720 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_facility Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,720 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_facility Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,721 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_facility Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,721 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_facility Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,721 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_facilityMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,721 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_sampleGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,721 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_sampleSELECT * FROM cnas_sample Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,721 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_sample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,721 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_sample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,722 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_sample Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,722 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_sample Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,722 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_sample Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,722 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_sampleMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,722 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_staffGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,722 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_staffSELECT * FROM cnas_staff Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,723 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_staff Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,723 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_staff Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,723 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_staff Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,723 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_staff Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,723 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_staff Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,723 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_staffMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,723 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_result_ikaGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,723 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_result_ikaSELECT * FROM coalweight_analysis_result_ika Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,724 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM coalweight_analysis_result_ika Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,724 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalweight_analysis_result_ika Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,724 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalweight_analysis_result_ika Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,724 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalweight_analysis_result_ika Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,724 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalweight_analysis_result_ika Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,724 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_result_ikaMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,724 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dictGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,724 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dictSELECT * FROM dict Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,725 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM dict Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,725 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM dict Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,725 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM dict Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,725 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM dict Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,725 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM dict Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,725 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dictMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,725 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===esb_tableGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,726 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===esb_tableSELECT * FROM esb_table Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,726 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM esb_table Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,726 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM esb_table Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,726 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM esb_table Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,726 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM esb_table Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,726 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM esb_table Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,727 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===esb_tableMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,727 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,727 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileSELECT * FROM file Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,727 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM file Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,727 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM file Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,727 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM file Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,727 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM file Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,728 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM file Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,728 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,728 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===flowtableGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,728 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===flowtableSELECT * FROM flowtable Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,728 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM flowtable Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,728 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM flowtable Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,728 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM flowtable Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,728 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM flowtable Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,729 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM flowtable Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,729 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===flowtableMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,730 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===menuGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,730 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===menuSELECT * FROM menu Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,730 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM menu Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,730 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM menu Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,730 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM menu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,730 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM menu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,731 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM menu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,731 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===menuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,731 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===orgGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,731 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===orgSELECT * FROM org Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,731 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM org Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,731 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM org Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,731 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM org Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,731 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM org Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,732 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM org Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,732 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===orgMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,732 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===parameterGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,732 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===parameterSELECT * FROM parameter Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,732 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM parameter Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,732 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM parameter Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,732 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM parameter Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,733 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM parameter Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,733 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM parameter Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,733 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===parameterMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,733 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===roleGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,733 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===roleSELECT * FROM role Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,733 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM role Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,733 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM role Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,733 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM role Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,734 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM role Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,734 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM role Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,734 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===roleMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,734 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===role_menuGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,734 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===role_menuSELECT * FROM role_menu Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,734 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM role_menu Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,734 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM role_menu Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,734 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM role_menu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,735 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM role_menu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,735 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM role_menu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,735 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===role_menuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,735 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===role_userGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,735 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===role_userSELECT * FROM role_user Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,735 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM role_user Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,735 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM role_user Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,736 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM role_user Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,736 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM role_user Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,736 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM role_user Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,736 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===role_userMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,736 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmaterialGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,736 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmaterialSELECT * FROM standardmaterial Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,736 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM standardmaterial Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,736 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardmaterial Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,737 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardmaterial Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,737 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM standardmaterial Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,737 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM standardmaterial Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,737 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmaterialMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,737 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===system_cacheGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,737 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===system_cacheSELECT * FROM system_cache Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,738 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM system_cache Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,738 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM system_cache Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,738 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM system_cache Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,738 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM system_cache Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,738 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM system_cache Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,738 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===system_cacheMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,738 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tablemanagementGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,738 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tablemanagementSELECT * FROM tablemanagement Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,739 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM tablemanagement Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,739 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tablemanagement Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,739 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tablemanagement Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,739 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tablemanagement Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,739 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tablemanagement Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,739 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tablemanagementMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,739 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===task_remindGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,739 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===task_remindSELECT * FROM task_remind Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,740 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM task_remind Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,740 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM task_remind Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,740 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM task_remind Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,740 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM task_remind Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,740 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM task_remind Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,740 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===task_remindMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,740 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalweightetltableGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,740 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalweightetltableSELECT * FROM tcoalweightetltable Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,740 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM tcoalweightetltable Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,740 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalweightetltable Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,741 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalweightetltable Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,741 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tcoalweightetltable Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,741 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tcoalweightetltable Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,741 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalweightetltableMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,741 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,741 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testSELECT * FROM test Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,741 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM test Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,742 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM test Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,742 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM test Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,742 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM test Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,742 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM test Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,742 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,742 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===urlGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,742 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===urlSELECT * FROM url Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,743 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM url Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,743 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM url Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,743 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM url Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,743 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM url Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,743 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM url Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,743 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===urlMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,743 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===userGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,743 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===userSELECT * FROM user Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,744 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM user Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,744 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM user Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,744 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM user Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,744 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM user Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,745 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM user Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,745 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===userMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,745 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===versioninfoGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:02,745 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===versioninfoSELECT * FROM versioninfo Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,745 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM versioninfo Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,745 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM versioninfo Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,745 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM versioninfo Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,745 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM versioninfo Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,746 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM versioninfo Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,746 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===versioninfoMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:02,793 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,793 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,793 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,795 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,795 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,848 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-16 15:46:02,849 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,849 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:02,849 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,850 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,850 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:02,850 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:29,914 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='platform'server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,914 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='platform'server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,914 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='platform'System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,916 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='platform'System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,916 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='platform'System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,916 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_ge_bytearrayGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:29,916 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_ge_bytearraySELECT * FROM act_ge_bytearray Where 0=1 +¼ʱ䣺2025-02-16 15:46:29,917 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_ge_bytearray Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,917 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ge_bytearray Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,917 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ge_bytearray Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,917 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_ge_bytearray Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,917 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_ge_bytearray Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,917 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_ge_bytearrayMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:29,917 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_ge_propertyGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:29,917 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_ge_propertySELECT * FROM act_ge_property Where 0=1 +¼ʱ䣺2025-02-16 15:46:29,918 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_ge_property Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,918 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ge_property Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,918 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ge_property Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,918 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_ge_property Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,918 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_ge_property Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,918 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_ge_propertyMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:29,918 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_hi_actinstGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:29,918 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_hi_actinstSELECT * FROM act_hi_actinst Where 0=1 +¼ʱ䣺2025-02-16 15:46:29,918 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_hi_actinst Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,918 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_actinst Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,918 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_actinst Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,919 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_hi_actinst Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,919 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_hi_actinst Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,919 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_hi_actinstMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:29,919 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_hi_attachmentGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:29,919 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_hi_attachmentSELECT * FROM act_hi_attachment Where 0=1 +¼ʱ䣺2025-02-16 15:46:29,919 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_hi_attachment Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,919 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_attachment Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,919 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_attachment Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,920 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_hi_attachment Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,920 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_hi_attachment Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,920 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_hi_attachmentMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:29,920 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_hi_commentGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:29,920 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_hi_commentSELECT * FROM act_hi_comment Where 0=1 +¼ʱ䣺2025-02-16 15:46:29,920 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_hi_comment Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,921 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_comment Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,921 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_comment Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,921 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_hi_comment Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,921 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_hi_comment Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,921 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_hi_commentMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:29,921 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_hi_detailGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:29,921 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_hi_detailSELECT * FROM act_hi_detail Where 0=1 +¼ʱ䣺2025-02-16 15:46:29,922 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_hi_detail Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,922 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_detail Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,922 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_detail Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,922 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_hi_detail Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,922 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_hi_detail Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,922 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_hi_detailMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:29,922 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_hi_identitylinkGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:29,922 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_hi_identitylinkSELECT * FROM act_hi_identitylink Where 0=1 +¼ʱ䣺2025-02-16 15:46:29,923 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_hi_identitylink Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,923 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_identitylink Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,923 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_identitylink Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,923 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_hi_identitylink Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,923 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_hi_identitylink Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,923 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_hi_identitylinkMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:29,923 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_hi_procinstGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:29,923 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_hi_procinstSELECT * FROM act_hi_procinst Where 0=1 +¼ʱ䣺2025-02-16 15:46:29,924 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_hi_procinst Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,924 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_procinst Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,924 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_procinst Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,924 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_hi_procinst Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,924 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_hi_procinst Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,924 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_hi_procinstMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:29,924 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_hi_taskinstGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:29,925 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_hi_taskinstSELECT * FROM act_hi_taskinst Where 0=1 +¼ʱ䣺2025-02-16 15:46:29,925 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_hi_taskinst Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,925 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_taskinst Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,925 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_taskinst Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,925 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_hi_taskinst Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,926 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_hi_taskinst Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,926 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_hi_taskinstMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:29,926 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_hi_varinstGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:29,926 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_hi_varinstSELECT * FROM act_hi_varinst Where 0=1 +¼ʱ䣺2025-02-16 15:46:29,926 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_hi_varinst Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,926 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_varinst Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,926 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_varinst Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,926 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_hi_varinst Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,927 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_hi_varinst Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,927 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_hi_varinstMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:29,927 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_id_groupGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:29,927 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_id_groupSELECT * FROM act_id_group Where 0=1 +¼ʱ䣺2025-02-16 15:46:29,927 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_id_group Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,927 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_id_group Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,927 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_id_group Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,928 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_id_group Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,928 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_id_group Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,928 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_id_groupMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:29,928 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_id_infoGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:29,928 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_id_infoSELECT * FROM act_id_info Where 0=1 +¼ʱ䣺2025-02-16 15:46:29,928 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_id_info Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,928 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_id_info Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,928 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_id_info Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,929 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_id_info Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,929 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_id_info Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,929 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_id_infoMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:29,929 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_id_membershipGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:29,929 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_id_membershipSELECT * FROM act_id_membership Where 0=1 +¼ʱ䣺2025-02-16 15:46:29,929 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_id_membership Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,929 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_id_membership Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,930 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_id_membership Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,930 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_id_membership Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,930 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_id_membership Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,930 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_id_membershipMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:29,930 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_id_userGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:29,930 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_id_userSELECT * FROM act_id_user Where 0=1 +¼ʱ䣺2025-02-16 15:46:29,930 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_id_user Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,931 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_id_user Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,931 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_id_user Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,931 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_id_user Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,931 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_id_user Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,931 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_id_userMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:29,931 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_re_deploymentGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:29,931 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_re_deploymentSELECT * FROM act_re_deployment Where 0=1 +¼ʱ䣺2025-02-16 15:46:29,932 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_re_deployment Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,932 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_re_deployment Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,932 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_re_deployment Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,932 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_re_deployment Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,932 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_re_deployment Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,932 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_re_deploymentMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:29,932 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_re_modelGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:29,932 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_re_modelSELECT * FROM act_re_model Where 0=1 +¼ʱ䣺2025-02-16 15:46:29,933 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_re_model Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,933 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_re_model Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,933 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_re_model Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,933 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_re_model Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,933 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_re_model Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,933 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_re_modelMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:29,933 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_re_procdefGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:29,933 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_re_procdefSELECT * FROM act_re_procdef Where 0=1 +¼ʱ䣺2025-02-16 15:46:29,934 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_re_procdef Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,934 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_re_procdef Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,934 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_re_procdef Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,934 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_re_procdef Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,934 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_re_procdef Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,934 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_re_procdefMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:29,934 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_ru_event_subscrGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:29,934 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_ru_event_subscrSELECT * FROM act_ru_event_subscr Where 0=1 +¼ʱ䣺2025-02-16 15:46:29,935 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_ru_event_subscr Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,935 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ru_event_subscr Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,935 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ru_event_subscr Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,935 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_ru_event_subscr Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,935 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_ru_event_subscr Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,935 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_ru_event_subscrMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:29,935 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_ru_executionGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:29,936 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_ru_executionSELECT * FROM act_ru_execution Where 0=1 +¼ʱ䣺2025-02-16 15:46:29,936 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_ru_execution Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,936 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ru_execution Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,936 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ru_execution Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,936 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_ru_execution Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,936 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_ru_execution Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,937 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_ru_executionMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:29,937 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_ru_identitylinkGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:29,937 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_ru_identitylinkSELECT * FROM act_ru_identitylink Where 0=1 +¼ʱ䣺2025-02-16 15:46:29,937 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_ru_identitylink Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,937 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ru_identitylink Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,937 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ru_identitylink Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,937 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_ru_identitylink Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,938 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_ru_identitylink Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,938 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_ru_identitylinkMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:29,938 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_ru_jobGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:29,938 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_ru_jobSELECT * FROM act_ru_job Where 0=1 +¼ʱ䣺2025-02-16 15:46:29,938 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_ru_job Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,938 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ru_job Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,938 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ru_job Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,938 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_ru_job Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,939 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_ru_job Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,939 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_ru_jobMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:29,939 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_ru_taskGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:29,939 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_ru_taskSELECT * FROM act_ru_task Where 0=1 +¼ʱ䣺2025-02-16 15:46:29,939 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_ru_task Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,939 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ru_task Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,939 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ru_task Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,940 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_ru_task Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,940 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_ru_task Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,940 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_ru_taskMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:29,940 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_ru_variableGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:29,940 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_ru_variableSELECT * FROM act_ru_variable Where 0=1 +¼ʱ䣺2025-02-16 15:46:29,940 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_ru_variable Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,940 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ru_variable Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,940 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ru_variable Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,941 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_ru_variable Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,941 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_ru_variable Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,941 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_ru_variableMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:29,941 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_ashGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:29,941 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_ashSELECT * FROM cnas_analysis_ash Where 0=1 +¼ʱ䣺2025-02-16 15:46:29,941 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_ash Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,942 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_ash Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,942 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_ash Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,942 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_ash Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,942 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_ash Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,942 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_ashMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:29,942 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_ashdtlGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:29,942 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_ashdtlSELECT * FROM cnas_analysis_ashdtl Where 0=1 +¼ʱ䣺2025-02-16 15:46:29,943 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_ashdtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,943 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_ashdtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,943 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_ashdtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,943 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_ashdtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,943 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_ashdtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,943 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_ashdtlMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:29,943 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_autoGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:29,944 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_autoSELECT * FROM cnas_analysis_auto Where 0=1 +¼ʱ䣺2025-02-16 15:46:29,944 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_auto Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,944 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_auto Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,944 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_auto Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,944 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_auto Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,945 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_auto Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,945 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_autoMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:29,945 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_autodtlGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:29,945 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_autodtlSELECT * FROM cnas_analysis_autodtl Where 0=1 +¼ʱ䣺2025-02-16 15:46:29,945 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_autodtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,945 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_autodtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,945 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_autodtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,946 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_autodtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,946 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_autodtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,946 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_autodtlMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:29,946 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_calorificGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:29,946 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_calorificSELECT * FROM cnas_analysis_calorific Where 0=1 +¼ʱ䣺2025-02-16 15:46:29,946 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_calorific Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,946 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_calorific Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,946 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_calorific Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,947 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_calorific Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,947 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_calorific Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,947 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_calorificMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:29,947 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_calorificdtlGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:29,947 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_calorificdtlSELECT * FROM cnas_analysis_calorificdtl Where 0=1 +¼ʱ䣺2025-02-16 15:46:29,948 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_calorificdtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,948 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_calorificdtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,948 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_calorificdtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,948 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_calorificdtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,948 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_calorificdtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,948 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_calorificdtlMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:29,948 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_capacityGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:29,948 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_capacitySELECT * FROM cnas_analysis_capacity Where 0=1 +¼ʱ䣺2025-02-16 15:46:29,949 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_capacity Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,949 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_capacity Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,949 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_capacity Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,949 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_capacity Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,949 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_capacity Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,950 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_capacityMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:29,950 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_capacitydtlGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:29,950 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_capacitydtlSELECT * FROM cnas_analysis_capacitydtl Where 0=1 +¼ʱ䣺2025-02-16 15:46:29,950 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_capacitydtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,950 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_capacitydtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,950 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_capacitydtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,950 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_capacitydtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,951 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_capacitydtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,951 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_capacitydtlMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:29,951 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_chnGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:29,951 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_chnSELECT * FROM cnas_analysis_chn Where 0=1 +¼ʱ䣺2025-02-16 15:46:29,951 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_chn Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,951 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_chn Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,951 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_chn Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,952 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_chn Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,952 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_chn Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,952 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_chnMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:29,952 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_chndtlGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:29,952 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_chndtlSELECT * FROM cnas_analysis_chndtl Where 0=1 +¼ʱ䣺2025-02-16 15:46:29,952 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_chndtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,952 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_chndtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,953 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_chndtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,953 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_chndtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,953 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_chndtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,953 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_chndtlMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:29,953 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_moistureGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:29,953 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_moistureSELECT * FROM cnas_analysis_moisture Where 0=1 +¼ʱ䣺2025-02-16 15:46:29,954 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_moisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,954 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_moisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,954 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_moisture Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,954 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_moisture Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,954 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_moisture Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,954 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_moistureMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:29,955 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_moisturedtlGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:29,955 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_moisturedtlSELECT * FROM cnas_analysis_moisturedtl Where 0=1 +¼ʱ䣺2025-02-16 15:46:29,955 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_moisturedtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,955 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_moisturedtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,955 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_moisturedtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,955 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_moisturedtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,956 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_moisturedtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,956 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_moisturedtlMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:29,956 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_stadGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:29,956 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_stadSELECT * FROM cnas_analysis_stad Where 0=1 +¼ʱ䣺2025-02-16 15:46:29,956 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_stad Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,956 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_stad Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,956 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_stad Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,957 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_stad Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,957 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_stad Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,957 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_stadMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:29,957 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_staddtlGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:29,957 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_staddtlSELECT * FROM cnas_analysis_staddtl Where 0=1 +¼ʱ䣺2025-02-16 15:46:29,957 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_staddtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,958 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_staddtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,958 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_staddtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,958 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_staddtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,958 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_staddtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,958 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_staddtlMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:29,958 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_totalmoistureGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:29,958 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_totalmoistureSELECT * FROM cnas_analysis_totalmoisture Where 0=1 +¼ʱ䣺2025-02-16 15:46:29,959 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_totalmoisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,959 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_totalmoisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,959 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_totalmoisture Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,959 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_totalmoisture Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,959 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_totalmoisture Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,959 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:29,960 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_totalmoisturedtlGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:29,960 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_totalmoisturedtlSELECT * FROM cnas_analysis_totalmoisturedtl Where 0=1 +¼ʱ䣺2025-02-16 15:46:29,960 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_totalmoisturedtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,960 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_totalmoisturedtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,960 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_totalmoisturedtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,960 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_totalmoisturedtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,961 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_totalmoisturedtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,961 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_totalmoisturedtlMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:29,961 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_volatileGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:29,961 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_volatileSELECT * FROM cnas_analysis_volatile Where 0=1 +¼ʱ䣺2025-02-16 15:46:29,961 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_volatile Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,961 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_volatile Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,961 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_volatile Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,962 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_volatile Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,962 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_volatile Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,962 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_volatileMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:29,962 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_volatiledtlGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:29,962 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_volatiledtlSELECT * FROM cnas_analysis_volatiledtl Where 0=1 +¼ʱ䣺2025-02-16 15:46:29,962 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_volatiledtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,963 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_volatiledtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,963 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_volatiledtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,963 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_volatiledtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,963 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_volatiledtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,963 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_volatiledtlMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:29,963 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_deviceGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:29,963 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_deviceSELECT * FROM cnas_device Where 0=1 +¼ʱ䣺2025-02-16 15:46:29,964 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_device Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,964 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_device Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,964 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_device Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,964 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_device Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,964 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_device Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,964 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_deviceMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:29,964 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_facilityGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:29,964 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_facilitySELECT * FROM cnas_facility Where 0=1 +¼ʱ䣺2025-02-16 15:46:29,965 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_facility Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,965 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_facility Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,965 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_facility Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,965 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_facility Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,965 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_facility Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,966 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_facilityMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:29,966 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_sampleGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:29,966 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_sampleSELECT * FROM cnas_sample Where 0=1 +¼ʱ䣺2025-02-16 15:46:29,966 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_sample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,966 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_sample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,966 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_sample Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,966 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_sample Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,967 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_sample Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,967 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_sampleMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:29,967 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_staffGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:29,967 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_staffSELECT * FROM cnas_staff Where 0=1 +¼ʱ䣺2025-02-16 15:46:29,967 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_staff Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,967 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_staff Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,967 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_staff Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,968 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_staff Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,968 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_staff Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,968 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_staffMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:29,968 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_result_ikaGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:29,968 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_result_ikaSELECT * FROM coalweight_analysis_result_ika Where 0=1 +¼ʱ䣺2025-02-16 15:46:29,968 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM coalweight_analysis_result_ika Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,968 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalweight_analysis_result_ika Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,968 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalweight_analysis_result_ika Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,969 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalweight_analysis_result_ika Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,969 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalweight_analysis_result_ika Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,969 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_result_ikaMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:29,969 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dictGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:29,969 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dictSELECT * FROM dict Where 0=1 +¼ʱ䣺2025-02-16 15:46:29,969 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM dict Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,970 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM dict Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,970 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM dict Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,970 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM dict Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,970 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM dict Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,970 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dictMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:29,970 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===esb_tableGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:29,970 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===esb_tableSELECT * FROM esb_table Where 0=1 +¼ʱ䣺2025-02-16 15:46:29,971 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM esb_table Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,971 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM esb_table Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,971 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM esb_table Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,971 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM esb_table Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,971 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM esb_table Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,971 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===esb_tableMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:29,971 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:29,971 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileSELECT * FROM file Where 0=1 +¼ʱ䣺2025-02-16 15:46:29,972 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM file Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,972 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM file Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,972 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM file Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,972 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM file Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,973 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM file Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,973 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:29,973 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===flowtableGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:29,973 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===flowtableSELECT * FROM flowtable Where 0=1 +¼ʱ䣺2025-02-16 15:46:29,973 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM flowtable Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,973 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM flowtable Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,974 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM flowtable Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,974 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM flowtable Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,974 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM flowtable Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,974 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===flowtableMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:29,974 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===menuGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:29,974 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===menuSELECT * FROM menu Where 0=1 +¼ʱ䣺2025-02-16 15:46:29,974 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM menu Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,975 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM menu Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,975 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM menu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,975 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM menu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,975 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM menu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,975 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===menuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:29,975 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===orgGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:29,975 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===orgSELECT * FROM org Where 0=1 +¼ʱ䣺2025-02-16 15:46:29,976 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM org Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,976 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM org Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,976 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM org Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,976 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM org Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,976 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM org Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,976 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===orgMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:29,977 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===parameterGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:29,977 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===parameterSELECT * FROM parameter Where 0=1 +¼ʱ䣺2025-02-16 15:46:29,977 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM parameter Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,977 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM parameter Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,977 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM parameter Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,978 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM parameter Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,978 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM parameter Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,978 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===parameterMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:29,978 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===roleGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:29,978 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===roleSELECT * FROM role Where 0=1 +¼ʱ䣺2025-02-16 15:46:29,978 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM role Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,978 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM role Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,978 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM role Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,979 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM role Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,979 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM role Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,979 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===roleMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:29,979 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===role_menuGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:29,979 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===role_menuSELECT * FROM role_menu Where 0=1 +¼ʱ䣺2025-02-16 15:46:29,979 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM role_menu Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,979 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM role_menu Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,979 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM role_menu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,980 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM role_menu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,980 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM role_menu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,980 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===role_menuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:29,980 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===role_userGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:29,980 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===role_userSELECT * FROM role_user Where 0=1 +¼ʱ䣺2025-02-16 15:46:29,980 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM role_user Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,980 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM role_user Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,980 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM role_user Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,980 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM role_user Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,980 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM role_user Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,980 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===role_userMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:29,981 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmaterialGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:29,981 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmaterialSELECT * FROM standardmaterial Where 0=1 +¼ʱ䣺2025-02-16 15:46:29,981 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM standardmaterial Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,981 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardmaterial Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,981 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardmaterial Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,981 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM standardmaterial Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,982 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM standardmaterial Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,984 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmaterialMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:29,984 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===system_cacheGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:29,984 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===system_cacheSELECT * FROM system_cache Where 0=1 +¼ʱ䣺2025-02-16 15:46:29,985 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM system_cache Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,985 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM system_cache Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,985 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM system_cache Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,985 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM system_cache Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,985 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM system_cache Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,985 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===system_cacheMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:29,985 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tablemanagementGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:29,985 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tablemanagementSELECT * FROM tablemanagement Where 0=1 +¼ʱ䣺2025-02-16 15:46:29,986 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM tablemanagement Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,986 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tablemanagement Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,986 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tablemanagement Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,986 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tablemanagement Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,986 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tablemanagement Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,986 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tablemanagementMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:29,986 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===task_remindGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:29,986 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===task_remindSELECT * FROM task_remind Where 0=1 +¼ʱ䣺2025-02-16 15:46:29,987 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM task_remind Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,987 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM task_remind Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,987 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM task_remind Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,987 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM task_remind Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,987 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM task_remind Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,988 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===task_remindMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:29,988 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalweightetltableGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:29,988 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalweightetltableSELECT * FROM tcoalweightetltable Where 0=1 +¼ʱ䣺2025-02-16 15:46:29,988 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM tcoalweightetltable Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,988 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalweightetltable Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,988 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalweightetltable Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,988 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tcoalweightetltable Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,989 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tcoalweightetltable Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,989 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalweightetltableMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:29,989 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:29,989 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testSELECT * FROM test Where 0=1 +¼ʱ䣺2025-02-16 15:46:29,989 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM test Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,989 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM test Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,989 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM test Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,989 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM test Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,990 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM test Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,990 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:29,990 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===urlGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:29,990 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===urlSELECT * FROM url Where 0=1 +¼ʱ䣺2025-02-16 15:46:29,990 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM url Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,990 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM url Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,990 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM url Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,991 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM url Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,991 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM url Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,991 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===urlMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:29,991 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===userGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:29,991 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===userSELECT * FROM user Where 0=1 +¼ʱ䣺2025-02-16 15:46:29,991 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM user Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,991 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM user Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,992 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM user Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,992 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM user Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,992 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM user Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,992 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===userMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:29,992 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===versioninfoGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:29,992 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===versioninfoSELECT * FROM versioninfo Where 0=1 +¼ʱ䣺2025-02-16 15:46:29,992 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM versioninfo Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,992 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM versioninfo Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:29,992 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM versioninfo Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,993 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM versioninfo Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,993 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM versioninfo Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:29,993 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===versioninfoMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:30,027 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:30,027 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:30,027 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:30,029 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:30,029 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:30,081 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-16 15:46:30,081 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:30,081 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:30,081 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:30,082 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:30,082 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:30,082 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:51,514 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='platform'server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,514 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='platform'server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,514 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='platform'System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,515 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='platform'System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,516 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='platform'System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,516 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_ge_bytearrayGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:51,516 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_ge_bytearraySELECT * FROM act_ge_bytearray Where 0=1 +¼ʱ䣺2025-02-16 15:46:51,516 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_ge_bytearray Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,516 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ge_bytearray Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,516 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ge_bytearray Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,517 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_ge_bytearray Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,517 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_ge_bytearray Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,517 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_ge_bytearrayMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:51,517 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_ge_propertyGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:51,517 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_ge_propertySELECT * FROM act_ge_property Where 0=1 +¼ʱ䣺2025-02-16 15:46:51,517 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_ge_property Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,517 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ge_property Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,517 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ge_property Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,518 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_ge_property Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,518 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_ge_property Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,518 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_ge_propertyMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:51,518 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_hi_actinstGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:51,518 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_hi_actinstSELECT * FROM act_hi_actinst Where 0=1 +¼ʱ䣺2025-02-16 15:46:51,518 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_hi_actinst Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,519 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_actinst Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,519 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_actinst Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,519 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_hi_actinst Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,519 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_hi_actinst Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,519 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_hi_actinstMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:51,519 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_hi_attachmentGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:51,519 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_hi_attachmentSELECT * FROM act_hi_attachment Where 0=1 +¼ʱ䣺2025-02-16 15:46:51,520 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_hi_attachment Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,520 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_attachment Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,520 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_attachment Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,520 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_hi_attachment Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,520 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_hi_attachment Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,520 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_hi_attachmentMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:51,521 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_hi_commentGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:51,521 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_hi_commentSELECT * FROM act_hi_comment Where 0=1 +¼ʱ䣺2025-02-16 15:46:51,521 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_hi_comment Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,521 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_comment Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,521 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_comment Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,521 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_hi_comment Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,521 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_hi_comment Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,522 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_hi_commentMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:51,522 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_hi_detailGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:51,522 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_hi_detailSELECT * FROM act_hi_detail Where 0=1 +¼ʱ䣺2025-02-16 15:46:51,522 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_hi_detail Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,522 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_detail Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,522 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_detail Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,522 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_hi_detail Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,523 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_hi_detail Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,523 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_hi_detailMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:51,523 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_hi_identitylinkGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:51,523 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_hi_identitylinkSELECT * FROM act_hi_identitylink Where 0=1 +¼ʱ䣺2025-02-16 15:46:51,523 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_hi_identitylink Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,523 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_identitylink Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,523 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_identitylink Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,523 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_hi_identitylink Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,524 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_hi_identitylink Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,524 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_hi_identitylinkMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:51,524 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_hi_procinstGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:51,524 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_hi_procinstSELECT * FROM act_hi_procinst Where 0=1 +¼ʱ䣺2025-02-16 15:46:51,524 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_hi_procinst Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,524 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_procinst Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,524 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_procinst Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,525 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_hi_procinst Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,525 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_hi_procinst Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,525 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_hi_procinstMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:51,525 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_hi_taskinstGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:51,525 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_hi_taskinstSELECT * FROM act_hi_taskinst Where 0=1 +¼ʱ䣺2025-02-16 15:46:51,525 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_hi_taskinst Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,525 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_taskinst Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,525 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_taskinst Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,526 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_hi_taskinst Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,526 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_hi_taskinst Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,526 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_hi_taskinstMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:51,526 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_hi_varinstGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:51,526 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_hi_varinstSELECT * FROM act_hi_varinst Where 0=1 +¼ʱ䣺2025-02-16 15:46:51,527 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_hi_varinst Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,527 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_varinst Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,527 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_varinst Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,527 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_hi_varinst Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,527 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_hi_varinst Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,527 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_hi_varinstMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:51,527 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_id_groupGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:51,527 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_id_groupSELECT * FROM act_id_group Where 0=1 +¼ʱ䣺2025-02-16 15:46:51,528 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_id_group Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,528 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_id_group Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,528 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_id_group Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,528 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_id_group Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,528 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_id_group Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,528 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_id_groupMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:51,528 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_id_infoGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:51,528 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_id_infoSELECT * FROM act_id_info Where 0=1 +¼ʱ䣺2025-02-16 15:46:51,529 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_id_info Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,529 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_id_info Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,529 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_id_info Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,529 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_id_info Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,529 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_id_info Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,529 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_id_infoMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:51,530 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_id_membershipGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:51,530 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_id_membershipSELECT * FROM act_id_membership Where 0=1 +¼ʱ䣺2025-02-16 15:46:51,530 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_id_membership Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,530 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_id_membership Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,530 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_id_membership Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,530 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_id_membership Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,530 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_id_membership Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,531 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_id_membershipMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:51,531 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_id_userGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:51,531 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_id_userSELECT * FROM act_id_user Where 0=1 +¼ʱ䣺2025-02-16 15:46:51,531 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_id_user Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,531 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_id_user Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,531 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_id_user Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,531 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_id_user Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,532 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_id_user Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,532 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_id_userMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:51,532 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_re_deploymentGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:51,532 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_re_deploymentSELECT * FROM act_re_deployment Where 0=1 +¼ʱ䣺2025-02-16 15:46:51,532 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_re_deployment Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,532 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_re_deployment Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,532 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_re_deployment Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,532 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_re_deployment Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,533 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_re_deployment Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,533 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_re_deploymentMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:51,533 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_re_modelGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:51,533 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_re_modelSELECT * FROM act_re_model Where 0=1 +¼ʱ䣺2025-02-16 15:46:51,533 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_re_model Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,533 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_re_model Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,533 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_re_model Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,534 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_re_model Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,534 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_re_model Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,534 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_re_modelMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:51,534 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_re_procdefGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:51,534 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_re_procdefSELECT * FROM act_re_procdef Where 0=1 +¼ʱ䣺2025-02-16 15:46:51,534 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_re_procdef Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,534 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_re_procdef Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,534 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_re_procdef Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,535 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_re_procdef Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,535 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_re_procdef Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,535 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_re_procdefMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:51,535 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_ru_event_subscrGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:51,535 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_ru_event_subscrSELECT * FROM act_ru_event_subscr Where 0=1 +¼ʱ䣺2025-02-16 15:46:51,535 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_ru_event_subscr Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,535 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ru_event_subscr Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,536 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ru_event_subscr Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,536 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_ru_event_subscr Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,536 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_ru_event_subscr Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,536 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_ru_event_subscrMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:51,536 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_ru_executionGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:51,536 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_ru_executionSELECT * FROM act_ru_execution Where 0=1 +¼ʱ䣺2025-02-16 15:46:51,536 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_ru_execution Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,537 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ru_execution Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,537 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ru_execution Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,537 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_ru_execution Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,537 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_ru_execution Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,537 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_ru_executionMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:51,537 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_ru_identitylinkGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:51,537 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_ru_identitylinkSELECT * FROM act_ru_identitylink Where 0=1 +¼ʱ䣺2025-02-16 15:46:51,538 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_ru_identitylink Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,538 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ru_identitylink Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,538 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ru_identitylink Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,538 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_ru_identitylink Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,538 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_ru_identitylink Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,538 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_ru_identitylinkMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:51,538 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_ru_jobGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:51,538 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_ru_jobSELECT * FROM act_ru_job Where 0=1 +¼ʱ䣺2025-02-16 15:46:51,539 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_ru_job Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,539 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ru_job Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,539 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ru_job Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,539 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_ru_job Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,539 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_ru_job Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,539 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_ru_jobMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:51,539 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_ru_taskGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:51,539 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_ru_taskSELECT * FROM act_ru_task Where 0=1 +¼ʱ䣺2025-02-16 15:46:51,540 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_ru_task Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,540 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ru_task Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,540 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ru_task Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,540 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_ru_task Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,540 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_ru_task Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,540 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_ru_taskMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:51,540 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_ru_variableGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:51,540 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_ru_variableSELECT * FROM act_ru_variable Where 0=1 +¼ʱ䣺2025-02-16 15:46:51,541 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM act_ru_variable Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,541 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ru_variable Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,541 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ru_variable Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,541 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_ru_variable Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,541 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_ru_variable Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,541 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_ru_variableMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:51,541 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_ashGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:51,542 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_ashSELECT * FROM cnas_analysis_ash Where 0=1 +¼ʱ䣺2025-02-16 15:46:51,542 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_ash Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,542 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_ash Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,542 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_ash Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,542 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_ash Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,543 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_ash Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,543 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_ashMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:51,543 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_ashdtlGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:51,543 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_ashdtlSELECT * FROM cnas_analysis_ashdtl Where 0=1 +¼ʱ䣺2025-02-16 15:46:51,543 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_ashdtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,543 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_ashdtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,543 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_ashdtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,544 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_ashdtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,544 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_ashdtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,544 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_ashdtlMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:51,544 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_autoGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:51,544 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_autoSELECT * FROM cnas_analysis_auto Where 0=1 +¼ʱ䣺2025-02-16 15:46:51,544 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_auto Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,544 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_auto Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,544 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_auto Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,545 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_auto Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,545 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_auto Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,545 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_autoMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:51,545 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_autodtlGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:51,545 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_autodtlSELECT * FROM cnas_analysis_autodtl Where 0=1 +¼ʱ䣺2025-02-16 15:46:51,546 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_autodtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,546 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_autodtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,546 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_autodtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,546 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_autodtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,546 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_autodtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,546 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_autodtlMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:51,546 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_calorificGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:51,546 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_calorificSELECT * FROM cnas_analysis_calorific Where 0=1 +¼ʱ䣺2025-02-16 15:46:51,547 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_calorific Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,547 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_calorific Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,547 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_calorific Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,547 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_calorific Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,547 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_calorific Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,547 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_calorificMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:51,548 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_calorificdtlGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:51,548 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_calorificdtlSELECT * FROM cnas_analysis_calorificdtl Where 0=1 +¼ʱ䣺2025-02-16 15:46:51,548 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_calorificdtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,548 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_calorificdtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,548 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_calorificdtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,548 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_calorificdtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,549 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_calorificdtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,549 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_calorificdtlMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:51,549 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_capacityGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:51,549 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_capacitySELECT * FROM cnas_analysis_capacity Where 0=1 +¼ʱ䣺2025-02-16 15:46:51,549 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_capacity Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,549 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_capacity Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,549 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_capacity Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,550 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_capacity Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,550 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_capacity Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,550 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_capacityMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:51,550 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_capacitydtlGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:51,550 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_capacitydtlSELECT * FROM cnas_analysis_capacitydtl Where 0=1 +¼ʱ䣺2025-02-16 15:46:51,551 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_capacitydtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,551 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_capacitydtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,551 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_capacitydtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,551 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_capacitydtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,551 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_capacitydtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,551 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_capacitydtlMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:51,552 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_chnGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:51,552 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_chnSELECT * FROM cnas_analysis_chn Where 0=1 +¼ʱ䣺2025-02-16 15:46:51,552 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_chn Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,552 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_chn Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,552 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_chn Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,553 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_chn Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,553 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_chn Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,553 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_chnMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:51,553 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_chndtlGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:51,553 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_chndtlSELECT * FROM cnas_analysis_chndtl Where 0=1 +¼ʱ䣺2025-02-16 15:46:51,554 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_chndtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,554 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_chndtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,554 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_chndtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,554 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_chndtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,554 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_chndtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,554 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_chndtlMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:51,554 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_moistureGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:51,554 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_moistureSELECT * FROM cnas_analysis_moisture Where 0=1 +¼ʱ䣺2025-02-16 15:46:51,555 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_moisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,555 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_moisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,555 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_moisture Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,555 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_moisture Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,555 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_moisture Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,555 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_moistureMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:51,556 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_moisturedtlGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:51,556 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_moisturedtlSELECT * FROM cnas_analysis_moisturedtl Where 0=1 +¼ʱ䣺2025-02-16 15:46:51,556 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_moisturedtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,556 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_moisturedtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,556 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_moisturedtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,556 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_moisturedtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,557 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_moisturedtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,557 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_moisturedtlMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:51,557 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_stadGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:51,557 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_stadSELECT * FROM cnas_analysis_stad Where 0=1 +¼ʱ䣺2025-02-16 15:46:51,557 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_stad Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,557 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_stad Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,557 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_stad Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,558 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_stad Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,558 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_stad Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,558 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_stadMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:51,558 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_staddtlGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:51,558 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_staddtlSELECT * FROM cnas_analysis_staddtl Where 0=1 +¼ʱ䣺2025-02-16 15:46:51,563 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_staddtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,563 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_staddtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,563 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_staddtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,564 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_staddtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,564 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_staddtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,564 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_staddtlMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:51,564 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_totalmoistureGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:51,564 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_totalmoistureSELECT * FROM cnas_analysis_totalmoisture Where 0=1 +¼ʱ䣺2025-02-16 15:46:51,565 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_totalmoisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,565 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_totalmoisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,565 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_totalmoisture Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,565 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_totalmoisture Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,565 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_totalmoisture Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,565 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:51,565 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_totalmoisturedtlGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:51,566 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_totalmoisturedtlSELECT * FROM cnas_analysis_totalmoisturedtl Where 0=1 +¼ʱ䣺2025-02-16 15:46:51,566 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_totalmoisturedtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,566 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_totalmoisturedtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,566 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_totalmoisturedtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,566 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_totalmoisturedtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,567 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_totalmoisturedtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,567 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_totalmoisturedtlMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:51,567 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_volatileGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:51,567 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_volatileSELECT * FROM cnas_analysis_volatile Where 0=1 +¼ʱ䣺2025-02-16 15:46:51,567 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_volatile Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,567 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_volatile Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,567 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_volatile Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,568 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_volatile Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,568 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_volatile Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,568 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_volatileMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:51,568 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_volatiledtlGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:51,568 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_volatiledtlSELECT * FROM cnas_analysis_volatiledtl Where 0=1 +¼ʱ䣺2025-02-16 15:46:51,569 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_volatiledtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,569 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_volatiledtl Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,569 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_volatiledtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,569 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_volatiledtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,569 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_volatiledtl Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,569 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_volatiledtlMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:51,570 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_deviceGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:51,570 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_deviceSELECT * FROM cnas_device Where 0=1 +¼ʱ䣺2025-02-16 15:46:51,570 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_device Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,570 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_device Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,570 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_device Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,570 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_device Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,571 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_device Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,571 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_deviceMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:51,571 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_facilityGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:51,571 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_facilitySELECT * FROM cnas_facility Where 0=1 +¼ʱ䣺2025-02-16 15:46:51,571 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_facility Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,571 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_facility Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,571 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_facility Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,571 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_facility Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,572 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_facility Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,572 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_facilityMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:51,572 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_sampleGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:51,572 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_sampleSELECT * FROM cnas_sample Where 0=1 +¼ʱ䣺2025-02-16 15:46:51,572 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_sample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,572 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_sample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,572 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_sample Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,573 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_sample Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,573 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_sample Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,573 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_sampleMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:51,573 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_staffGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:51,573 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_staffSELECT * FROM cnas_staff Where 0=1 +¼ʱ䣺2025-02-16 15:46:51,573 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_staff Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,573 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_staff Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,573 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_staff Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,574 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_staff Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,574 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_staff Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,574 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_staffMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:51,574 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_result_ikaGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:51,574 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_result_ikaSELECT * FROM coalweight_analysis_result_ika Where 0=1 +¼ʱ䣺2025-02-16 15:46:51,574 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM coalweight_analysis_result_ika Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,574 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalweight_analysis_result_ika Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,575 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalweight_analysis_result_ika Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,575 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalweight_analysis_result_ika Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,575 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalweight_analysis_result_ika Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,575 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_result_ikaMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:51,575 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dictGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:51,575 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dictSELECT * FROM dict Where 0=1 +¼ʱ䣺2025-02-16 15:46:51,575 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM dict Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,576 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM dict Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,576 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM dict Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,576 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM dict Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,576 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM dict Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,576 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dictMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:51,576 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===esb_tableGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:51,576 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===esb_tableSELECT * FROM esb_table Where 0=1 +¼ʱ䣺2025-02-16 15:46:51,577 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM esb_table Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,577 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM esb_table Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,577 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM esb_table Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,577 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM esb_table Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,577 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM esb_table Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,577 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===esb_tableMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:51,577 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:51,577 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileSELECT * FROM file Where 0=1 +¼ʱ䣺2025-02-16 15:46:51,578 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM file Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,578 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM file Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,578 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM file Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,578 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM file Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,578 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM file Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,578 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:51,578 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===flowtableGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:51,578 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===flowtableSELECT * FROM flowtable Where 0=1 +¼ʱ䣺2025-02-16 15:46:51,579 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM flowtable Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,579 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM flowtable Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,579 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM flowtable Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,579 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM flowtable Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,579 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM flowtable Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,579 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===flowtableMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:51,579 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===menuGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:51,579 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===menuSELECT * FROM menu Where 0=1 +¼ʱ䣺2025-02-16 15:46:51,580 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM menu Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,580 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM menu Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,580 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM menu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,580 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM menu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,580 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM menu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,580 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===menuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:51,580 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===orgGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:51,581 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===orgSELECT * FROM org Where 0=1 +¼ʱ䣺2025-02-16 15:46:51,581 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM org Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,581 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM org Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,581 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM org Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,581 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM org Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,582 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM org Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,582 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===orgMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:51,582 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===parameterGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:51,582 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===parameterSELECT * FROM parameter Where 0=1 +¼ʱ䣺2025-02-16 15:46:51,582 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM parameter Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,582 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM parameter Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,582 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM parameter Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,582 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM parameter Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,583 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM parameter Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,583 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===parameterMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:51,583 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===roleGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:51,583 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===roleSELECT * FROM role Where 0=1 +¼ʱ䣺2025-02-16 15:46:51,583 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM role Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,583 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM role Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,583 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM role Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,584 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM role Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,584 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM role Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,584 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===roleMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:51,584 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===role_menuGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:51,584 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===role_menuSELECT * FROM role_menu Where 0=1 +¼ʱ䣺2025-02-16 15:46:51,584 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM role_menu Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,584 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM role_menu Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,585 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM role_menu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,585 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM role_menu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,585 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM role_menu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,585 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===role_menuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:51,585 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===role_userGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:51,585 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===role_userSELECT * FROM role_user Where 0=1 +¼ʱ䣺2025-02-16 15:46:51,585 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM role_user Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,586 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM role_user Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,586 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM role_user Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,586 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM role_user Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,586 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM role_user Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,586 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===role_userMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:51,586 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmaterialGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:51,586 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmaterialSELECT * FROM standardmaterial Where 0=1 +¼ʱ䣺2025-02-16 15:46:51,587 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM standardmaterial Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,587 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardmaterial Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,587 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardmaterial Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,587 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM standardmaterial Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,587 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM standardmaterial Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,587 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmaterialMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:51,587 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===system_cacheGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:51,588 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===system_cacheSELECT * FROM system_cache Where 0=1 +¼ʱ䣺2025-02-16 15:46:51,588 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM system_cache Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,588 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM system_cache Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,588 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM system_cache Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,588 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM system_cache Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,589 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM system_cache Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,589 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===system_cacheMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:51,589 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tablemanagementGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:51,589 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tablemanagementSELECT * FROM tablemanagement Where 0=1 +¼ʱ䣺2025-02-16 15:46:51,589 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM tablemanagement Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,589 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tablemanagement Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,589 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tablemanagement Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,590 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tablemanagement Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,590 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tablemanagement Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,590 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tablemanagementMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:51,590 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===task_remindGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:51,590 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===task_remindSELECT * FROM task_remind Where 0=1 +¼ʱ䣺2025-02-16 15:46:51,590 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM task_remind Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,591 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM task_remind Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,591 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM task_remind Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,591 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM task_remind Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,591 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM task_remind Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,591 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===task_remindMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:51,591 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalweightetltableGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:51,591 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalweightetltableSELECT * FROM tcoalweightetltable Where 0=1 +¼ʱ䣺2025-02-16 15:46:51,592 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM tcoalweightetltable Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,592 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalweightetltable Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,592 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalweightetltable Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,592 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tcoalweightetltable Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,592 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tcoalweightetltable Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,592 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalweightetltableMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:51,592 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:51,592 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testSELECT * FROM test Where 0=1 +¼ʱ䣺2025-02-16 15:46:51,593 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM test Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,593 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM test Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,593 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM test Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,593 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM test Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,593 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM test Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,593 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:51,593 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===urlGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:51,593 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===urlSELECT * FROM url Where 0=1 +¼ʱ䣺2025-02-16 15:46:51,594 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM url Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,594 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM url Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,594 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM url Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,594 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM url Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,594 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM url Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,594 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===urlMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:51,594 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===userGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:51,594 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===userSELECT * FROM user Where 0=1 +¼ʱ䣺2025-02-16 15:46:51,595 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM user Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,595 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM user Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,595 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM user Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,595 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM user Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,595 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM user Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,595 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===userMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:51,595 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===versioninfoGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-16 15:46:51,596 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===versioninfoSELECT * FROM versioninfo Where 0=1 +¼ʱ䣺2025-02-16 15:46:51,596 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM versioninfo Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,596 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM versioninfo Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=platform;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,596 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM versioninfo Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,596 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM versioninfo Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,596 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM versioninfo Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,596 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===versioninfoMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:46:51,647 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,647 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,647 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,649 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,649 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,696 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-16 15:46:51,696 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,696 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:46:51,696 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,697 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,697 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:46:51,697 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:47:05,873 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===acceptanceconsumablematerialsSELECT * FROM acceptanceconsumablematerials Where 0=1 +¼ʱ䣺2025-02-16 15:47:05,874 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM acceptanceconsumablematerials Where 0=1server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:47:05,874 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM acceptanceconsumablematerials Where 0=1server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:47:05,874 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM acceptanceconsumablematerials Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:47:05,876 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM acceptanceconsumablematerials Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:47:05,876 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM acceptanceconsumablematerials Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:47:05,876 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===acceptanceconsumablematerialsMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-16 15:47:08,615 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-16 15:47:08,615 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:47:08,615 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-16 15:47:08,615 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:47:08,616 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:47:08,616 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-16 15:47:08,616 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +>>>>>>> e61dd2ce015f609324a2df3f403e999bf1c3591b