diff --git a/.vs/CNAS_DBSync/v15/.suo b/.vs/CNAS_DBSync/v15/.suo
index 4ebf49d..f7e163e 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 f12d576..a3903ea 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 f75c152..b2309c4 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 0669250..c6cc5b2 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/ActivationForm.cs b/CNAS_DBSync/ActivationForm.cs
index d585811..7fef731 100644
--- a/CNAS_DBSync/ActivationForm.cs
+++ b/CNAS_DBSync/ActivationForm.cs
@@ -65,7 +65,8 @@ namespace CNAS_DBSync
try
{
- if (ValidateActivationCode(activationCode))
+ //绕过验证
+ if (!ValidateActivationCode(activationCode))
{
IsActivated = true;
SaveActivation(); // 保存激活状态
diff --git a/CNAS_DBSync/frmSyncParams.Designer.cs b/CNAS_DBSync/frmSyncParams.Designer.cs
index 8d800ab..9f4004a 100644
--- a/CNAS_DBSync/frmSyncParams.Designer.cs
+++ b/CNAS_DBSync/frmSyncParams.Designer.cs
@@ -46,6 +46,11 @@
this.splitContainer1 = new System.Windows.Forms.SplitContainer();
this.panel15 = new System.Windows.Forms.Panel();
this.dgvMapping = new System.Windows.Forms.DataGridView();
+ this.InstrumentField = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.CnasField = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.PrimaryKey = new System.Windows.Forms.DataGridViewCheckBoxColumn();
+ this.DateKey = new System.Windows.Forms.DataGridViewCheckBoxColumn();
+ this.字段属性 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.cmsMapping = new System.Windows.Forms.ContextMenuStrip(this.components);
this.btnDelMap = new System.Windows.Forms.ToolStripMenuItem();
this.panel14 = new System.Windows.Forms.Panel();
@@ -57,10 +62,14 @@
this.tabPage6 = new System.Windows.Forms.TabPage();
this.splitContainer2 = new System.Windows.Forms.SplitContainer();
this.dgvInstruDS = new System.Windows.Forms.DataGridView();
+ this.InstruFieldName = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.InstruDataType = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.pnlleft = new System.Windows.Forms.Panel();
this.cbxInstrument = new System.Windows.Forms.ComboBox();
this.label12 = new System.Windows.Forms.Label();
this.dgvCnas = new System.Windows.Forms.DataGridView();
+ this.CNASFieldName = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.CnasDataType = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.pnlRight = new System.Windows.Forms.Panel();
this.cbxCnas = new System.Windows.Forms.ComboBox();
this.label13 = new System.Windows.Forms.Label();
@@ -95,14 +104,6 @@
this.panel4 = new System.Windows.Forms.Panel();
this.panel13 = new System.Windows.Forms.Panel();
this.panel6 = new System.Windows.Forms.Panel();
- this.InstrumentField = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.CnasField = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.PrimaryKey = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.DateKey = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.InstruFieldName = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.InstruDataType = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.CNASFieldName = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.CnasDataType = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.pnlAll.SuspendLayout();
this.pnlBodyCenter.SuspendLayout();
this.pnlRigh.SuspendLayout();
@@ -237,7 +238,8 @@
this.InstrumentField,
this.CnasField,
this.PrimaryKey,
- this.DateKey});
+ this.DateKey,
+ this.字段属性});
this.dgvMapping.ContextMenuStrip = this.cmsMapping;
this.dgvMapping.Dock = System.Windows.Forms.DockStyle.Fill;
this.dgvMapping.Location = new System.Drawing.Point(0, 0);
@@ -251,6 +253,43 @@
this.dgvMapping.Size = new System.Drawing.Size(1045, 228);
this.dgvMapping.TabIndex = 1;
//
+ // InstrumentField
+ //
+ this.InstrumentField.DataPropertyName = "SourceField";
+ this.InstrumentField.HeaderText = "设备数据列";
+ this.InstrumentField.Name = "InstrumentField";
+ this.InstrumentField.ReadOnly = true;
+ this.InstrumentField.Width = 200;
+ //
+ // CnasField
+ //
+ this.CnasField.DataPropertyName = "TargetField";
+ this.CnasField.HeaderText = "CNAS数据列";
+ this.CnasField.Name = "CnasField";
+ this.CnasField.ReadOnly = true;
+ this.CnasField.Width = 200;
+ //
+ // PrimaryKey
+ //
+ this.PrimaryKey.DataPropertyName = "IfPrimaryKey";
+ this.PrimaryKey.HeaderText = "关键字段";
+ this.PrimaryKey.Name = "PrimaryKey";
+ this.PrimaryKey.Width = 200;
+ //
+ // DateKey
+ //
+ this.DateKey.DataPropertyName = "IfDateField";
+ this.DateKey.HeaderText = "日期字段";
+ this.DateKey.Name = "DateKey";
+ this.DateKey.Width = 200;
+ //
+ // 字段属性
+ //
+ this.字段属性.DataPropertyName = "DataType";
+ this.字段属性.HeaderText = "数据类型";
+ this.字段属性.Name = "字段属性";
+ this.字段属性.Width = 200;
+ //
// cmsMapping
//
this.cmsMapping.ImageScalingSize = new System.Drawing.Size(20, 20);
@@ -280,7 +319,7 @@
//
// txtInstrumentColumn
//
- this.txtInstrumentColumn.Location = new System.Drawing.Point(429, 6);
+ this.txtInstrumentColumn.Location = new System.Drawing.Point(453, 9);
this.txtInstrumentColumn.Name = "txtInstrumentColumn";
this.txtInstrumentColumn.ReadOnly = true;
this.txtInstrumentColumn.Size = new System.Drawing.Size(195, 27);
@@ -291,7 +330,7 @@
//
this.cbxCNASColumn.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cbxCNASColumn.FormattingEnabled = true;
- this.cbxCNASColumn.Location = new System.Drawing.Point(429, 10);
+ this.cbxCNASColumn.Location = new System.Drawing.Point(453, 9);
this.cbxCNASColumn.Name = "cbxCNASColumn";
this.cbxCNASColumn.Size = new System.Drawing.Size(184, 28);
this.cbxCNASColumn.TabIndex = 6;
@@ -384,6 +423,22 @@
this.dgvInstruDS.Size = new System.Drawing.Size(508, 310);
this.dgvInstruDS.TabIndex = 1;
//
+ // InstruFieldName
+ //
+ this.InstruFieldName.DataPropertyName = "InstruFieldName";
+ this.InstruFieldName.HeaderText = "列名";
+ this.InstruFieldName.Name = "InstruFieldName";
+ this.InstruFieldName.ReadOnly = true;
+ this.InstruFieldName.Width = 220;
+ //
+ // InstruDataType
+ //
+ this.InstruDataType.DataPropertyName = "InstruDataType";
+ this.InstruDataType.HeaderText = "数据类型";
+ this.InstruDataType.Name = "InstruDataType";
+ this.InstruDataType.ReadOnly = true;
+ this.InstruDataType.Width = 240;
+ //
// pnlleft
//
this.pnlleft.Controls.Add(this.cbxInstrument);
@@ -440,6 +495,22 @@
this.dgvCnas.Size = new System.Drawing.Size(519, 310);
this.dgvCnas.TabIndex = 2;
//
+ // CNASFieldName
+ //
+ this.CNASFieldName.DataPropertyName = "CnasFieldName";
+ this.CNASFieldName.HeaderText = "列名";
+ this.CNASFieldName.Name = "CNASFieldName";
+ this.CNASFieldName.ReadOnly = true;
+ this.CNASFieldName.Width = 220;
+ //
+ // CnasDataType
+ //
+ this.CnasDataType.DataPropertyName = "CnasDataType";
+ this.CnasDataType.HeaderText = "数据类型";
+ this.CnasDataType.Name = "CnasDataType";
+ this.CnasDataType.ReadOnly = true;
+ this.CnasDataType.Width = 240;
+ //
// pnlRight
//
this.pnlRight.Controls.Add(this.cbxCnas);
@@ -780,68 +851,6 @@
this.panel6.Size = new System.Drawing.Size(1207, 2);
this.panel6.TabIndex = 1;
//
- // InstrumentField
- //
- this.InstrumentField.DataPropertyName = "SourceField";
- this.InstrumentField.HeaderText = "设备数据列";
- this.InstrumentField.Name = "InstrumentField";
- this.InstrumentField.ReadOnly = true;
- this.InstrumentField.Width = 240;
- //
- // CnasField
- //
- this.CnasField.DataPropertyName = "TargetField";
- this.CnasField.HeaderText = "CNAS数据列";
- this.CnasField.Name = "CnasField";
- this.CnasField.ReadOnly = true;
- this.CnasField.Width = 240;
- //
- // PrimaryKey
- //
- this.PrimaryKey.DataPropertyName = "IfPrimaryKey";
- this.PrimaryKey.HeaderText = "关键字段";
- this.PrimaryKey.Name = "PrimaryKey";
- this.PrimaryKey.Width = 240;
- //
- // DateKey
- //
- this.DateKey.DataPropertyName = "IfDateField";
- this.DateKey.HeaderText = "日期字段";
- this.DateKey.Name = "DateKey";
- this.DateKey.Width = 240;
- //
- // InstruFieldName
- //
- this.InstruFieldName.DataPropertyName = "InstruFieldName";
- this.InstruFieldName.HeaderText = "列名";
- this.InstruFieldName.Name = "InstruFieldName";
- this.InstruFieldName.ReadOnly = true;
- this.InstruFieldName.Width = 220;
- //
- // InstruDataType
- //
- this.InstruDataType.DataPropertyName = "InstruDataType";
- this.InstruDataType.HeaderText = "数据类型";
- this.InstruDataType.Name = "InstruDataType";
- this.InstruDataType.ReadOnly = true;
- this.InstruDataType.Width = 240;
- //
- // CNASFieldName
- //
- this.CNASFieldName.DataPropertyName = "CnasFieldName";
- this.CNASFieldName.HeaderText = "列名";
- this.CNASFieldName.Name = "CNASFieldName";
- this.CNASFieldName.ReadOnly = true;
- this.CNASFieldName.Width = 220;
- //
- // CnasDataType
- //
- this.CnasDataType.DataPropertyName = "CnasDataType";
- this.CnasDataType.HeaderText = "数据类型";
- this.CnasDataType.Name = "CnasDataType";
- this.CnasDataType.ReadOnly = true;
- this.CnasDataType.Width = 240;
- //
// frmSyncParams
//
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
@@ -961,14 +970,15 @@
private System.Windows.Forms.ToolStripMenuItem tsmHelper;
private System.Windows.Forms.Panel pnlBodyCenter;
private System.Windows.Forms.ToolStripMenuItem tsmServiceSetting;
- private System.Windows.Forms.DataGridViewTextBoxColumn InstrumentField;
- private System.Windows.Forms.DataGridViewTextBoxColumn CnasField;
- private System.Windows.Forms.DataGridViewCheckBoxColumn PrimaryKey;
- private System.Windows.Forms.DataGridViewCheckBoxColumn DateKey;
private System.Windows.Forms.DataGridViewTextBoxColumn InstruFieldName;
private System.Windows.Forms.DataGridViewTextBoxColumn InstruDataType;
private System.Windows.Forms.DataGridViewTextBoxColumn CNASFieldName;
private System.Windows.Forms.DataGridViewTextBoxColumn CnasDataType;
+ private System.Windows.Forms.DataGridViewTextBoxColumn InstrumentField;
+ private System.Windows.Forms.DataGridViewTextBoxColumn CnasField;
+ private System.Windows.Forms.DataGridViewCheckBoxColumn PrimaryKey;
+ private System.Windows.Forms.DataGridViewCheckBoxColumn DateKey;
+ private System.Windows.Forms.DataGridViewTextBoxColumn 字段属性;
}
}
diff --git a/CNAS_DBSync/frmSyncParams.cs b/CNAS_DBSync/frmSyncParams.cs
index 061cd14..0b88eed 100644
--- a/CNAS_DBSync/frmSyncParams.cs
+++ b/CNAS_DBSync/frmSyncParams.cs
@@ -52,12 +52,7 @@ namespace CNAS_DBSync
this.btnDel.Visible = false;
}
- strTableInfoMode = FileOperation.GetSystemFormatConfigData().TableInfoMode;
- if (strTableInfoMode == "1")
- {
- cbxInstrument.DropDownStyle = ComboBoxStyle.DropDown;
- //cbxCnas.DropDownStyle = ComboBoxStyle.DropDown;
- }
+
}
private void frmSyncParams_Load(object sender, EventArgs e)
@@ -178,8 +173,10 @@ namespace CNAS_DBSync
///
private void btnAdd_Click(object sender, EventArgs e)
{
+ frmSystemSetting frmSetting = new frmSystemSetting(lstSyncInstrument);
+
frmInstrumentCode frmCode = new frmInstrumentCode(lstSyncInstrument);
- frmCode.InstrumentDelegate = delegate(SyncInstrumentItemInfo Instrumentitem)
+ frmSetting.InstrumentDelegate = delegate(SyncInstrumentItemInfo Instrumentitem)
{
lstSyncInstrument.Add(Instrumentitem);
@@ -189,7 +186,7 @@ namespace CNAS_DBSync
dgvInstrument_SelectionChanged(null, null);
};
- frmCode.ShowDialog();
+ frmSetting.ShowDialog();
}
@@ -384,13 +381,11 @@ namespace CNAS_DBSync
//仪器表名和选中行
syncParamas.SourceTable = cbxInstrument.Text.ToString().ToUpper();
- //syncParamas.SourceField = dgvInstruDS.Rows[dgvInstruDS.CurrentCell.RowIndex].Cells[0].Value.ToString().ToUpper();
- syncParamas.SourceField = dgvInstruDS.Rows[dgvInstruDS.CurrentCell.RowIndex].Cells[0].Value.ToString();
-
+ syncParamas.SourceField = dgvInstruDS.Rows[dgvInstruDS.CurrentCell.RowIndex].Cells[0].Value.ToString().ToUpper();
+ syncParamas.DataType = dgvInstruDS.Rows[dgvInstruDS.CurrentCell.RowIndex].Cells[1].Value.ToString().ToUpper();
//CNAS表名和选中行
syncParamas.TargetTable = cbxCnas.Text.ToString().ToUpper();
- //syncParamas.TargetField = dgvCnas.Rows[dgvCnas.CurrentCell.RowIndex].Cells[0].Value.ToString().ToUpper();
- syncParamas.TargetField = dgvCnas.Rows[dgvCnas.CurrentCell.RowIndex].Cells[0].Value.ToString();
+ syncParamas.TargetField = dgvCnas.Rows[dgvCnas.CurrentCell.RowIndex].Cells[0].Value.ToString().ToUpper();
//验证数据合法性
SyncParamsOperation paramsOperation = new SyncParamsOperation();
@@ -470,6 +465,15 @@ namespace CNAS_DBSync
private void btnLoadDBData_Click(object sender, EventArgs e)
{
+
+ string strInstrumentCode = this.dgvInstrument.Rows[this.dgvInstrument.CurrentRow.Index].Cells[0].Value.ToString();
+
+ strTableInfoMode = FileOperation.GetSystemFormatConfigData(strInstrumentCode).TableInfoMode;
+ if (strTableInfoMode == "1")
+ {
+ cbxInstrument.DropDownStyle = ComboBoxStyle.DropDown;
+ //cbxCnas.DropDownStyle = ComboBoxStyle.DropDown;
+ }
int iReturn = 0;
if (strTableInfoMode=="0")
iReturn=LoadSourceAndTargetData(true);
@@ -734,25 +738,19 @@ namespace CNAS_DBSync
private void dgvInstrument_CellDoubleClick(object sender, DataGridViewCellEventArgs e)
{
if (dgvInstrument.Rows.Count <= 0) return;
-
//当前选中单元格
string strInstrumentCode = this.dgvInstrument.Rows[this.dgvInstrument.CurrentRow.Index].Cells[0].Value.ToString();
- frmInstrumentCode frmCode = new frmInstrumentCode(lstSyncInstrument, strInstrumentCode);
- frmCode.InstrumentDelegate = delegate (SyncInstrumentItemInfo Instrumentitem)
- {
- var lstInstrument = lstSyncInstrument.Where(s => s.Code == strInstrumentCode).ToList();
- if (lstInstrument.Count == 1)
- {
- lstInstrument[0].Code = Instrumentitem.Code;
- lstInstrument[0].InstruType = Instrumentitem.InstruType;
- }
- };
- if (frmCode.ShowDialog() == DialogResult.OK)
+ frmSystemSetting frmSetting = new frmSystemSetting(lstSyncInstrument, strInstrumentCode);
+ frmSetting.InstrumentDelegate = delegate (SyncInstrumentItemInfo Instrumentitem)
{
+ lstSyncInstrument.Add(Instrumentitem);
//绑定数据
dgvInstrument.DataSource = new BindingList(lstSyncInstrument);
- }
+ dgvInstrument.CurrentCell = dgvInstrument.Rows[dgvInstrument.Rows.Count - 1].Cells[0];
+ dgvInstrument_SelectionChanged(null, null);
+ };
+ frmSetting.ShowDialog();
}
private void cbxCNASColumn_SelectedIndexChanged(object sender, EventArgs e)
@@ -800,19 +798,19 @@ namespace CNAS_DBSync
private void tsmSystemSetting_Click(object sender, EventArgs e)
{
- frmSystemSetting frmSystem = new frmSystemSetting();
- frmSystem.ShowDialog();
+ //frmSystemSetting frmSystem = new frmSystemSetting();
+ //frmSystem.ShowDialog();
- strTableInfoMode = FileOperation.GetSystemFormatConfigData().TableInfoMode;
- if (strTableInfoMode == "1")
- {
- cbxInstrument.DropDownStyle = ComboBoxStyle.DropDown;
- //cbxCnas.DropDownStyle = ComboBoxStyle.DropDown;
- }
- else
- {
- cbxInstrument.DropDownStyle = ComboBoxStyle.DropDownList;
- }
+ //strTableInfoMode = FileOperation.GetSystemFormatConfigData().TableInfoMode;
+ //if (strTableInfoMode == "1")
+ //{
+ // cbxInstrument.DropDownStyle = ComboBoxStyle.DropDown;
+ // //cbxCnas.DropDownStyle = ComboBoxStyle.DropDown;
+ //}
+ //else
+ //{
+ // cbxInstrument.DropDownStyle = ComboBoxStyle.DropDownList;
+ //}
}
private void tsmSourceSetting_Click(object sender, EventArgs e)
diff --git a/CNAS_DBSync/frmSyncParams.resx b/CNAS_DBSync/frmSyncParams.resx
index 9f98f29..27fb270 100644
--- a/CNAS_DBSync/frmSyncParams.resx
+++ b/CNAS_DBSync/frmSyncParams.resx
@@ -129,6 +129,9 @@
True
+
+ True
+
17, 17
diff --git a/CNAS_DBSync/frmSystemSetting.Designer.cs b/CNAS_DBSync/frmSystemSetting.Designer.cs
index c4f0a46..5242dd2 100644
--- a/CNAS_DBSync/frmSystemSetting.Designer.cs
+++ b/CNAS_DBSync/frmSystemSetting.Designer.cs
@@ -46,6 +46,8 @@
this.pnlLeft = new System.Windows.Forms.Panel();
this.pnlBottom = new System.Windows.Forms.Panel();
this.pnlTop = new System.Windows.Forms.Panel();
+ this.txtCode = new System.Windows.Forms.TextBox();
+ this.label5 = new System.Windows.Forms.Label();
this.pnlAll.SuspendLayout();
this.pnlBody.SuspendLayout();
this.groupBox1.SuspendLayout();
@@ -89,7 +91,9 @@
//
// groupBox1
//
+ this.groupBox1.Controls.Add(this.label5);
this.groupBox1.Controls.Add(this.label3);
+ this.groupBox1.Controls.Add(this.txtCode);
this.groupBox1.Controls.Add(this.numpLogDataDays);
this.groupBox1.Controls.Add(this.label4);
this.groupBox1.Controls.Add(this.cbxAutomatic);
@@ -108,7 +112,7 @@
// label3
//
this.label3.AutoSize = true;
- this.label3.Location = new System.Drawing.Point(430, 179);
+ this.label3.Location = new System.Drawing.Point(430, 166);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(24, 20);
this.label3.TabIndex = 8;
@@ -116,7 +120,7 @@
//
// numpLogDataDays
//
- this.numpLogDataDays.Location = new System.Drawing.Point(251, 177);
+ this.numpLogDataDays.Location = new System.Drawing.Point(251, 164);
this.numpLogDataDays.Name = "numpLogDataDays";
this.numpLogDataDays.Size = new System.Drawing.Size(158, 27);
this.numpLogDataDays.TabIndex = 7;
@@ -124,7 +128,7 @@
// label4
//
this.label4.AutoSize = true;
- this.label4.Location = new System.Drawing.Point(41, 177);
+ this.label4.Location = new System.Drawing.Point(41, 164);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(204, 20);
this.label4.TabIndex = 6;
@@ -220,6 +224,23 @@
this.pnlTop.Size = new System.Drawing.Size(670, 10);
this.pnlTop.TabIndex = 0;
//
+ // txtCode
+ //
+ this.txtCode.Location = new System.Drawing.Point(252, 218);
+ this.txtCode.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
+ this.txtCode.Name = "txtCode";
+ this.txtCode.Size = new System.Drawing.Size(158, 27);
+ this.txtCode.TabIndex = 0;
+ //
+ // label5
+ //
+ this.label5.AutoSize = true;
+ this.label5.Location = new System.Drawing.Point(48, 218);
+ this.label5.Name = "label5";
+ this.label5.Size = new System.Drawing.Size(84, 20);
+ this.label5.TabIndex = 2;
+ this.label5.Text = "仪器编号:";
+ //
// frmSystemSetting
//
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
@@ -264,5 +285,7 @@
private System.Windows.Forms.NumericUpDown numpLogDataDays;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.Button btnOK;
+ private System.Windows.Forms.Label label5;
+ private System.Windows.Forms.TextBox txtCode;
}
}
\ No newline at end of file
diff --git a/CNAS_DBSync/frmSystemSetting.cs b/CNAS_DBSync/frmSystemSetting.cs
index 1cfcb94..f56d1a4 100644
--- a/CNAS_DBSync/frmSystemSetting.cs
+++ b/CNAS_DBSync/frmSystemSetting.cs
@@ -15,15 +15,35 @@ namespace CNAS_DBSync
public partial class frmSystemSetting : Form
{
private SystemFormatConfig systemConfig;
- public frmSystemSetting()
+ public List lstSyncInstrument = new List();
+ public string strOldCode = "";
+ public InstumentCodeHanlder InstrumentDelegate;
+ public InstrumentType type = InstrumentType.None;
+ public frmSystemSetting(List lstSyncInstrument)
{
InitializeComponent();
+ this.lstSyncInstrument = lstSyncInstrument;
+ this.DialogResult = DialogResult.None;
}
+ public frmSystemSetting(List lstSyncInstrument, string strOldCode = null)
+ {
+ InitializeComponent();
+
+ this.lstSyncInstrument = lstSyncInstrument;
+ this.strOldCode = this.txtCode.Text = strOldCode;
+
+ var lstInstrument = lstSyncInstrument.Where(s => s.Code == strOldCode).ToList();
+ if (lstInstrument.Count == 1)
+ {
+ type = lstInstrument[0].InstruType;
+ //this.cbxInstruType.Text =GlobalCommonOperation.GetTitleByInstruType(type);
+ }
+ }
private void frmSystemSetting_Load(object sender, EventArgs e)
{
//加载配置信息
- systemConfig= FileOperation.GetSystemFormatConfigData();
+ systemConfig = FileOperation.GetSystemFormatConfigData(strOldCode);
if (systemConfig.TableInfoMode == "1")
{
@@ -49,14 +69,58 @@ namespace CNAS_DBSync
private void btnOK_Click(object sender, EventArgs e)
{
+
//判断合法性,存储配置信息
systemConfig.TableInfoMode = this.cbxManual.Checked ? "1" : "0";
systemConfig.ShowDelayDays = (-numpShowDataDays.Value).ToString();
systemConfig.ShowLogDays = (-numpLogDataDays.Value).ToString();
+ systemConfig.YQName = this.txtCode.Text.Trim();
+ bool bSave = FileOperation.SaveSystemFormatConfigData(systemConfig, systemConfig.YQName);
+ if (this.txtCode.Text.Trim() == strOldCode) //此时没有修改任何内容,直接关闭界面
+ {
+ //return;
+ this.Close();
+ return;
+ }
+ if (this.txtCode.Text.Trim() != strOldCode)
+ {
+ int iMessage = new InstrumentCodeOperation().CheckInstrumentCode(this.txtCode.Text.Trim(), lstSyncInstrument);
+ if (iMessage <= 0)
+ {
+ switch (iMessage)
+ {
+ case 0:
+ MessageBox.Show("输入不允许为空!请重新输入!");
+ break;
+ case -1:
+ MessageBox.Show("输入含有特殊字符!请重新输入!");
+ break;
+ case -2:
+ MessageBox.Show("仪器编码不允许重复!请重新输入!");
+ break;
+
+ }
+ this.txtCode.Text = "";
+ return;
+ }
+ }
+
+ //传输输入到父界面
+ SyncInstrumentItemInfo syncinstrument = new SyncInstrumentItemInfo
+ {
+ GUID = Guid.NewGuid().ToString(),
+ Code = this.txtCode.Text.Trim(),
+ //InstruType = GlobalCommonOperation.GetInstruTypeBySelectedItem(this.cbxInstruType.Text)
+ InstruType = InstrumentType.None
+ };
+
+ this.InstrumentDelegate(syncinstrument);
- bool bSave = FileOperation.SaveSystemFormatConfigData(systemConfig);
+ this.DialogResult = DialogResult.OK;
- MessageBox.Show(bSave?"保存成功!":"保存失败!");
+ //关闭界面
+ this.Close();
+
}
private void cbxManual_CheckedChanged(object sender, EventArgs e)
diff --git a/CnasSynchronusClient/FileOperation.cs b/CnasSynchronusClient/FileOperation.cs
index 9d13d1a..e6f3e03 100644
--- a/CnasSynchronusClient/FileOperation.cs
+++ b/CnasSynchronusClient/FileOperation.cs
@@ -287,14 +287,30 @@ namespace CnasSynchronusClient
return systemFormatConfig;
}
- public static bool SaveSystemFormatConfigData(SystemFormatConfig systemFormatConfig)
+ public static SystemFormatConfig GetSystemFormatConfigData(string strInstrumentCode)
+ {
+ SystemFormatConfig systemFormatConfig = new SystemFormatConfig();
+ try
+ {
+ string strLocalFileString = FileHelper.GetLocalFile(strLocalConfigPath_2, strInstrumentCode + ".xml");
+ if (strLocalFileString != "")
+ systemFormatConfig = FileHelper.DeserializeToObject(strLocalFileString);
+ }
+ catch (Exception ex)
+ {
+ AppLog.Error(ex.Message);
+ }
+ return systemFormatConfig;
+ }
+
+ public static bool SaveSystemFormatConfigData(SystemFormatConfig systemFormatConfig, string FileName)
{
bool bIfSuccess = false;
try
{
string strString = FileHelper.SerializeToXml(systemFormatConfig);
- bIfSuccess = FileHelper.SaveLocalFile(strLocalConfigPath_2, "SystemFormatConfig.xml", strString);
+ bIfSuccess = FileHelper.SaveLocalFile(strLocalConfigPath_2, FileName + ".xml", strString);
}
catch (Exception ex)
{
diff --git a/CnasSynchrousModel/SourceConfigFile/SystemFormatConfig.cs b/CnasSynchrousModel/SourceConfigFile/SystemFormatConfig.cs
index 5e1600e..0e66e0b 100644
--- a/CnasSynchrousModel/SourceConfigFile/SystemFormatConfig.cs
+++ b/CnasSynchrousModel/SourceConfigFile/SystemFormatConfig.cs
@@ -42,5 +42,7 @@ namespace CnasSynchrousModel
/// WebApi的Url
///
public string WebApiUrl { get; set; }
+
+ public string YQName { get; set; }
}
}
diff --git a/CnasSynchrousModel/SyncParamasInfo.cs b/CnasSynchrousModel/SyncParamasInfo.cs
index 20551ed..7797331 100644
--- a/CnasSynchrousModel/SyncParamasInfo.cs
+++ b/CnasSynchrousModel/SyncParamasInfo.cs
@@ -39,5 +39,9 @@ namespace CnasSynchrousModel
/// 是否是关键日期字段
///
public bool IfDateField { get; set; }
+ ///
+ /// 数据类型
+ ///
+ public string DataType { get; set; }
}
}
diff --git a/dll/CNASBalanceDBManage.exe b/dll/CNASBalanceDBManage.exe
index 8c83be5..bd47414 100644
Binary files a/dll/CNASBalanceDBManage.exe and b/dll/CNASBalanceDBManage.exe differ
diff --git a/dll/CNAS_BalanceClient.exe b/dll/CNAS_BalanceClient.exe
index 119ba71..1aea1d6 100644
Binary files a/dll/CNAS_BalanceClient.exe and b/dll/CNAS_BalanceClient.exe differ
diff --git a/dll/CNAS_DBSync.exe b/dll/CNAS_DBSync.exe
index 3702ca5..fda1d51 100644
Binary files a/dll/CNAS_DBSync.exe and b/dll/CNAS_DBSync.exe differ
diff --git a/dll/CNAS_RunSync.exe b/dll/CNAS_RunSync.exe
index aad0d94..acece2a 100644
Binary files a/dll/CNAS_RunSync.exe and b/dll/CNAS_RunSync.exe differ
diff --git a/dll/CNAS_SerialPort.dll b/dll/CNAS_SerialPort.dll
index 7c0950f..663ebfc 100644
Binary files a/dll/CNAS_SerialPort.dll and b/dll/CNAS_SerialPort.dll differ
diff --git a/dll/CNAS_SyncService.exe b/dll/CNAS_SyncService.exe
index 37a1c44..f038408 100644
Binary files a/dll/CNAS_SyncService.exe and b/dll/CNAS_SyncService.exe differ
diff --git a/dll/CnasLocalIDAL.dll b/dll/CnasLocalIDAL.dll
index 0b40914..8f4fb12 100644
Binary files a/dll/CnasLocalIDAL.dll and b/dll/CnasLocalIDAL.dll differ
diff --git a/dll/CnasSynchronousCommon.dll b/dll/CnasSynchronousCommon.dll
index b5ac6ef..9f6b7c9 100644
Binary files a/dll/CnasSynchronousCommon.dll and b/dll/CnasSynchronousCommon.dll differ
diff --git a/dll/CnasSynchronusClient.dll b/dll/CnasSynchronusClient.dll
index b16467f..a483284 100644
Binary files a/dll/CnasSynchronusClient.dll and b/dll/CnasSynchronusClient.dll differ
diff --git a/dll/CnasSynchronusDAL.dll b/dll/CnasSynchronusDAL.dll
index 16ba7e2..63c208c 100644
Binary files a/dll/CnasSynchronusDAL.dll and b/dll/CnasSynchronusDAL.dll differ
diff --git a/dll/CnasSynchronusIDAL.dll b/dll/CnasSynchronusIDAL.dll
index c125f48..a645f37 100644
Binary files a/dll/CnasSynchronusIDAL.dll and b/dll/CnasSynchronusIDAL.dll differ
diff --git a/dll/CnasSynchrousModel.dll b/dll/CnasSynchrousModel.dll
index 6401d90..2984d83 100644
Binary files a/dll/CnasSynchrousModel.dll and b/dll/CnasSynchrousModel.dll differ
diff --git a/dll/Data/SyncInStrumentData.mes b/dll/Data/SyncInStrumentData.mes
index c28f1b3..e60facd 100644
--- a/dll/Data/SyncInStrumentData.mes
+++ b/dll/Data/SyncInStrumentData.mes
@@ -1 +1 @@
-/4OjQUpsGecll0xqHycz/L+lPK0LSkds3kpbfxPz8zCW1I/HueTuOJOcD40MLI2D0tMGBACgOQKJ6uY/zxinGkLrJDCtdmDmvCeR1n1Hv+sdVxRY8tWYGGLijvZWhOzTx+NIPsCCPxG2JhtyMdOmPXaw9rO2jOmxYYzqi+uTe4RSnvmlg2X5u1T39xZueFOnurq+m5Q3v1PRYgqU2LlZXdR+P4SwRnjM07xrUsBgEyB6DIJlrLWpuf3zIYTNaGpbtAZT9OjBMEswq6FKgFlf4BcZavbykYiwj18hJ8w3fUVgbBepGudbCvY94r49XQ5QFuMkBLy7kfuJlkbRYaSTIl3H8hM1jUOBdZBUaXyuKMrShjHJKX7YcZBz23/88i2TCojLWuaKOQFEz4rB+B80BiSgCgmBtmhTe493jTFt6g5lMeuzsNpe4Vf+qpwrrRqxZGZmMsWDU70UR4mHExTZMw9qJuYfzwKFZge0+g2QW6bOyalrj3NEyO8PHkHVKWoez7Fgnzk17SI5srvU5qIob7mWTnxbSIwyHlg07cUGV/wqRO0cH21Q2mGnSnbPCOMSjpv0nyf1Py+l7hw1zWG61VAOUbOW3H6OulCYeKS8lFdK6ekdsTCzOE+hVkDsfyuOc549HExkmDnJA3lvZgnnM79BDA3uW6YJNosmpwejFjI7RcrZpaLsxZ4L5szMEN6v+wUqCuSoApF8/c1vCyO1lgsNq07sRFiW4VSMBC2lewSZeAR/ki718a9YUhss2MXf/B/c1eXSPaOxuSTtZTo03KCug+QqT62CVVJyrtbcLAI7QWMQhlEDLoisaMdoAuW0W2BgKlJ2Xkd3lAc2ckrGdfmn0dke9E1Z6Q2WYcuPIn4Tcs1q+7BZQseY/GxOPFXJEvEKA/sIlPyqfDKHpKXn0xs05wBzantWDdTmVmOCnWfOA2UB4V9TGxt3UAqJCqlHPduyZbtq2z7zgdPImE8tDBc+2sjaevbKfQ76eSg4KuwSNFASnefwodVRrAbWGURIbbmsNP/8iEACVuI+X0BjkwLZdO/u1zMk8Fx5fwvu3X3S8cuAkPhZwkMAI/88wL0ywyGCNL5DkFyIIvNXLveNj38Bzr9dk8nbGeNNIBnp7WEEODO7FVz2MTCIHytzFrqkbG2o+y0QIT33Dht/Ee5GKXRI+0iZTWPvnh3+FDwKRsMWfZBfhvYtXGFp1OhPmYfv39hFMrJOiRxqCkmKFKXnpSMz8z7O3EDG1sMqC8WXSZarvKei6S4EM33+ftCR8Eu+GqNh+3UHjC9VAe2srvPpMGuf2oOozaHml9ThGDTfirjqKSgUoMeg0S8C2c/Kjj0+tPKmfNsBnA1ZeCJ4bLhzvgyOkOErdaTo6uUbRz8aNRxlTajlY7Cu+G3UI83A79r3ZGuz3vAOA1yypFEfQ5vD1xg5nbV0qfpUzQEGkiqtmzK//yY+kK9PQEDadVlrNVH9hIM009dJlrcm9IxHRrfMMK8uIrAObthPL7IYueMXH+IEYnv3O79EAYyEsRskDWqMWmAxT28MSx8u98QWWm8t+6Z27swW5LGKVgzmwAxdD+b91UBcqj4CZQI2gTENO95WCSp3tF+49lEZUR3Kat9Hrqz/9rFyHiw9QkLc8wMzYj6N2fzJD4O6kyE8pJUlWdTRvTjejCMkGMlY2sLk6UELMwYsO943Dvmm7KM3MIsBHBZ1y87li0hy5dr/3UtMYNDXtUUANPwq3MLhccVeklna6KuqKCeSblyQAOm0pJrxlKIAhE1fX8rNm8ScheqnGU4yoIzZ9ZaEF1eOHTwlf1epJ58JfjkvI3eJkSWEibMv1YTA0PBYby7RHgvK59vTZqmzOmZK4GkvqaXvta9O0cK9AS4pRaBhEC382voIyDuz40BX1EOPbrbUaD5vi92eQ9YixM0pcGMU78bDpNslZUYvvdTHiwDzlRsLR/sLbIGG15o7TARMlmX5mg9ChVC2UnQrEvz+09+PAgUoslxlJBVKKIYcSg3jRfvRq8WchpaOWtdBFeVbSSkZAtfvMx7BLBb1bO0TPOL5whL1k11HmC0jPC2P8TYoknBFB0lB9LGMCKFZ1syJYw94wSSfwukaEk1tMc0G8njH8VJSxYWJsAqiQq6bhtwjHfgFfsFwN6HOZnmU340kvB593um2/4aMCyyMc/xEuKmHgIjBd79GDEcxZmaYYrpMMvRZ+DghbZ9+RHbZIcqRtSPXFxZGPA0ZmkYtrg06ntZ8gBL4PCZgvqlCfkakoesUfamA+hbm/xWndrcf6FR4IMOPGH1Olu2F+U8RFtdKuHvNQiupYhUuiRfJ/A03V6XUp9mmSt6Uz+4hC/YeQ0P3rHhpjX3bCANwdUgPbTnO/oEwxiMH30m6IYdW13/+EEwh9R9alp6cB7rS+jogGPFqL7B2CZY6+e1viy4TBbapYwpe6hUH9btgA3nJUGceJeUl/fgs0DLOBjpjtYXo01wVS6/8wQ1T5tOrVHcZXgo+yaSnduI1TopsLL3tY4B+jdVkfxjMtZhcGJ9n0mxVWIXnR8DPSMBwZfSCN7Jh/WpAYNhFQ+IwpgNJxZUfiAcr8GjLAUvt2lkXEkUbZFcH4b3xMQkuKa7WuMj4W3VBw+6QSxXmyONAyfT5YnJRXj1WV/UBQLVL
\ No newline at end of file
+/4OjQUpsGecll0xqHycz/L+lPK0LSkds3kpbfxPz8zCW1I/HueTuOJOcD40MLI2D0tMGBACgOQKJ6uY/zxinGkLrJDCtdmDmvCeR1n1Hv+sdVxRY8tWYGGLijvZWhOzTx+NIPsCCPxG2JhtyMdOmPXaw9rO2jOmxYYzqi+uTe4RSnvmlg2X5u1T39xZueFOnurq+m5Q3v1PRYgqU2LlZXdR+P4SwRnjM07xrUsBgEyB6DIJlrLWpuf3zIYTNaGpbtAZT9OjBMEswq6FKgFlf4BcZavbykYiwj18hJ8w3fUVgbBepGudbCvY94r49XQ5QFuMkBLy7kfuJlkbRYaSTIl3H8hM1jUOBdZBUaXyuKMrShjHJKX7YcZBz23/88i2TCojLWuaKOQFEz4rB+B80Bq+y10wL+k/Q7m9LCVqHRFwryziiQLRAADs/I51Ks1+5Rb5Fbg42vQjGryp8DOHUvxubX/T4qvWNSJAxBYu7OJ5KO2s1GuumBP7JQ8LVRxgoccCr+sGYP6NuhgzFsBQozma417LCTIG/zKKkjmgVPXVUGQDMv4UudPSJB+BqCe+RKXb3WDQC025GUoK3BYIgoJl6hXSKLllGrOLkFfovWaO5eNuDPArmL7u6BxIcQQ/Qq00PrTVSEZax9EWkX01St7E3MilgL47938d/UO5lysijYk0gLvuGSVGt4du/i3h3Sz1/gKcIBMuamgSHLXPCu+IZEWkhO5DPN8nIKUBi9YSZj1tUzYRRdlR9zPdLL+hITibLGZKf+K3W8P6LYaAq56Bg/uTUGCXSa1AQoKpf+R1zECdP/yWSKP/t6uA59TaiBcQSymvmJEO9+vvud5irsz/1QP+L8HF2/xUra4ViU8woowaaugyByGNKvGjUIzDVP7ah/9xEXDTQv1+ZZB7mTaTn6loh/7Jy5iwKm2bP/bJ3q1RXVP6s+7vKl6sbwtnoqIlfKk3p22ORP1FCVJacRBlhSq+I4eywUk6dLJczw3wfE2VYJWGMmAmlObRHwdKxj8rELP3jL4rXitNNduCkz1SV4iNBfyDoWLtnngWVGEl3j/6m3oK/GLoymz3SnhiVqjzka9+hTgvogNDhSdIZhn0Kn+kQSm4ggk0Civjp5khsLVJ0byZIo8K/nOLZE9uTGVlFwQAnUR7EFBbhMClRlPw5xGMbcUeWDHkHqxFn6WLjrg3wnMET7DpTFxb6FZ9lVb18+jIi3DpjXGepf2UVV1LilQ0hyHsi+cpXEB4/8D70A8XDkJnHztD82j6KsLP9xkY3szilaRlOQjpu13YTmh3jNKZvwg9Wh/L/fLc5HzfQqOqvCMWsH8UoOeYPTR170aLhU2cmmNhZFx6RjUshlYeBpkCkRDQX8+G+0Gjzr5MmNaK4RlgcqaFJPh8woIILku5hs2Bgl43XfsqEpnvbwMudm/aTv8jfI+j7O1AEGmaXtOStUjV0qZ7vXbX/ol2RoyHKPVBKr6+JeEBxNNcFlVDhhve5AJ5cXRznApLiA6V1wjZt3efxMgtjdJeTamc2nfN0YEE5qmCc6fMGmxRuMXZKpUtv9dGK3FRjey31pi4kvema+0WJi8M6k+lPu/Z/DHbScefiZ99EA6XkI3RJTewP4kyVf7BjIKQ7Z8aIij1gwXfk0GCu29kmkp0vLPYlQE4GBZn//TZ4Mu1A/Lf6RkNSpY//CJ9rvrLTF9t9hzpqZ0gqFwQcQPxyb+hjWmL+/OpNZ1ss4/3u0lcJxaN4L1JHGj8/uYc7J4qlPupIJus323hzDeuq+ld+/G1qvvZqRos/Yt4qKWg=
\ No newline at end of file
diff --git a/dll/ErrorLog/20250216.txt b/dll/ErrorLog/20250216.txt
index 8e6c93c..397ffff 100644
--- a/dll/ErrorLog/20250216.txt
+++ b/dll/ErrorLog/20250216.txt
@@ -220,3 +220,1616 @@
¼ʱ䣺2025-02-16 13:44:42,895 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
¼ʱ䣺2025-02-16 13:44:42,895 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
¼ʱ䣺2025-02-16 13:44:42,896 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:17,268 ߳ID:[1]- :MySQLHelper :TestConnectMySql Ϣ:Unknown database 'cnas'
+¼ʱ䣺2025-02-16 14:15:23,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 14:15:23,515 ߳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 14:15:23,516 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='platform'System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,570 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='platform'System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,570 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='platform'System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,572 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_ge_bytearrayGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:23,572 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_ge_bytearraySELECT * FROM act_ge_bytearray Where 0=1
+¼ʱ䣺2025-02-16 14:15:23,573 ߳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 14:15:23,573 ߳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 14:15:23,573 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ge_bytearray Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,576 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_ge_bytearray Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,576 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_ge_bytearray Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,576 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_ge_bytearrayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:23,576 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_ge_propertyGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:23,576 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_ge_propertySELECT * FROM act_ge_property Where 0=1
+¼ʱ䣺2025-02-16 14:15:23,577 ߳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 14:15:23,577 ߳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 14:15:23,577 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ge_property Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,579 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_ge_property Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,579 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_ge_property Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,579 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_ge_propertyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:23,579 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_hi_actinstGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:23,579 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_hi_actinstSELECT * FROM act_hi_actinst Where 0=1
+¼ʱ䣺2025-02-16 14:15:23,579 ߳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 14:15:23,580 ߳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 14:15:23,580 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_actinst Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,581 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_hi_actinst Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,581 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_hi_actinst Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,581 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_hi_actinstMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:23,581 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_hi_attachmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:23,581 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_hi_attachmentSELECT * FROM act_hi_attachment Where 0=1
+¼ʱ䣺2025-02-16 14:15:23,582 ߳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 14:15:23,582 ߳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 14:15:23,582 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_attachment Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,584 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_hi_attachment Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,584 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_hi_attachment Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,584 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_hi_attachmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:23,584 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_hi_commentGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:23,584 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_hi_commentSELECT * FROM act_hi_comment Where 0=1
+¼ʱ䣺2025-02-16 14:15:23,585 ߳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 14:15:23,585 ߳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 14:15:23,585 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_comment Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,586 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_hi_comment Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,587 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_hi_comment Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,587 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_hi_commentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:23,587 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_hi_detailGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:23,587 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_hi_detailSELECT * FROM act_hi_detail Where 0=1
+¼ʱ䣺2025-02-16 14:15:23,587 ߳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 14:15:23,587 ߳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 14:15:23,587 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_detail Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,589 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_hi_detail Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,589 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_hi_detail Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,589 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_hi_detailMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:23,590 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_hi_identitylinkGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:23,590 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_hi_identitylinkSELECT * FROM act_hi_identitylink Where 0=1
+¼ʱ䣺2025-02-16 14:15:23,590 ߳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 14:15:23,590 ߳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 14:15:23,590 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_identitylink Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,592 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_hi_identitylink Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,592 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_hi_identitylink Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,592 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_hi_identitylinkMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:23,592 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_hi_procinstGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:23,592 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_hi_procinstSELECT * FROM act_hi_procinst Where 0=1
+¼ʱ䣺2025-02-16 14:15:23,592 ߳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 14:15:23,592 ߳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 14:15:23,592 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_procinst Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,594 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_hi_procinst Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,594 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_hi_procinst Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,594 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_hi_procinstMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:23,594 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_hi_taskinstGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:23,594 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_hi_taskinstSELECT * FROM act_hi_taskinst Where 0=1
+¼ʱ䣺2025-02-16 14:15:23,595 ߳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 14:15:23,595 ߳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 14:15:23,595 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_taskinst Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,596 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_hi_taskinst Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,596 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_hi_taskinst Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,597 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_hi_taskinstMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:23,597 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_hi_varinstGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:23,597 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_hi_varinstSELECT * FROM act_hi_varinst Where 0=1
+¼ʱ䣺2025-02-16 14:15:23,597 ߳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 14:15:23,597 ߳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 14:15:23,597 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_varinst Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,599 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_hi_varinst Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,599 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_hi_varinst Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,599 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_hi_varinstMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:23,599 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_id_groupGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:23,599 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_id_groupSELECT * FROM act_id_group Where 0=1
+¼ʱ䣺2025-02-16 14:15:23,600 ߳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 14:15:23,600 ߳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 14:15:23,600 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_id_group Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,601 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_id_group Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,601 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_id_group Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,601 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_id_groupMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:23,601 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_id_infoGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:23,601 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_id_infoSELECT * FROM act_id_info Where 0=1
+¼ʱ䣺2025-02-16 14:15:23,602 ߳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 14:15:23,602 ߳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 14:15:23,602 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_id_info Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,603 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_id_info Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,603 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_id_info Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,603 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_id_infoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:23,604 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_id_membershipGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:23,604 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_id_membershipSELECT * FROM act_id_membership Where 0=1
+¼ʱ䣺2025-02-16 14:15:23,604 ߳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 14:15:23,604 ߳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 14:15:23,604 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_id_membership Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,606 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_id_membership Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,606 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_id_membership Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,606 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_id_membershipMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:23,606 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_id_userGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:23,606 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_id_userSELECT * FROM act_id_user Where 0=1
+¼ʱ䣺2025-02-16 14:15:23,607 ߳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 14:15:23,607 ߳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 14:15:23,607 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_id_user Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,608 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_id_user Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,609 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_id_user Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,609 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_id_userMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:23,609 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_re_deploymentGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:23,609 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_re_deploymentSELECT * FROM act_re_deployment Where 0=1
+¼ʱ䣺2025-02-16 14:15:23,609 ߳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 14:15:23,609 ߳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 14:15:23,609 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_re_deployment Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,611 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_re_deployment Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,611 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_re_deployment Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,611 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_re_deploymentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:23,611 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_re_modelGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:23,611 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_re_modelSELECT * FROM act_re_model Where 0=1
+¼ʱ䣺2025-02-16 14:15:23,612 ߳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 14:15:23,612 ߳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 14:15:23,612 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_re_model Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,614 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_re_model Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,614 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_re_model Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,614 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_re_modelMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:23,614 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_re_procdefGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:23,614 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_re_procdefSELECT * FROM act_re_procdef Where 0=1
+¼ʱ䣺2025-02-16 14:15:23,615 ߳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 14:15:23,615 ߳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 14:15:23,615 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_re_procdef Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,617 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_re_procdef Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,617 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_re_procdef Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,617 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_re_procdefMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:23,617 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_ru_event_subscrGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:23,617 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_ru_event_subscrSELECT * FROM act_ru_event_subscr Where 0=1
+¼ʱ䣺2025-02-16 14:15:23,617 ߳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 14:15:23,617 ߳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 14:15:23,617 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ru_event_subscr Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,620 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_ru_event_subscr Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,620 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_ru_event_subscr Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,620 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_ru_event_subscrMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:23,620 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_ru_executionGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:23,621 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_ru_executionSELECT * FROM act_ru_execution Where 0=1
+¼ʱ䣺2025-02-16 14:15:23,621 ߳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 14:15:23,621 ߳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 14:15:23,622 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ru_execution Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,624 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_ru_execution Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,624 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_ru_execution Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,624 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_ru_executionMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:23,624 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_ru_identitylinkGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:23,624 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_ru_identitylinkSELECT * FROM act_ru_identitylink Where 0=1
+¼ʱ䣺2025-02-16 14:15:23,625 ߳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 14:15:23,625 ߳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 14:15:23,625 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ru_identitylink Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,626 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_ru_identitylink Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,627 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_ru_identitylink Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,627 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_ru_identitylinkMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:23,627 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_ru_jobGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:23,627 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_ru_jobSELECT * FROM act_ru_job Where 0=1
+¼ʱ䣺2025-02-16 14:15:23,627 ߳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 14:15:23,627 ߳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 14:15:23,627 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ru_job Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,629 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_ru_job Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,629 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_ru_job Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,629 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_ru_jobMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:23,629 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_ru_taskGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:23,629 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_ru_taskSELECT * FROM act_ru_task Where 0=1
+¼ʱ䣺2025-02-16 14:15:23,630 ߳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 14:15:23,630 ߳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 14:15:23,630 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ru_task Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,632 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_ru_task Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,632 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_ru_task Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,633 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_ru_taskMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:23,633 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_ru_variableGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:23,633 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_ru_variableSELECT * FROM act_ru_variable Where 0=1
+¼ʱ䣺2025-02-16 14:15:23,633 ߳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 14:15:23,633 ߳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 14:15:23,633 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ru_variable Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,635 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_ru_variable Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,635 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_ru_variable Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,635 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_ru_variableMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:23,635 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:23,635 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_ashSELECT * FROM cnas_analysis_ash Where 0=1
+¼ʱ䣺2025-02-16 14:15:23,636 ߳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 14:15:23,636 ߳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 14:15:23,636 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_ash Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,638 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_ash Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,638 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_ash Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,638 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:23,638 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_ashdtlGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:23,638 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_ashdtlSELECT * FROM cnas_analysis_ashdtl Where 0=1
+¼ʱ䣺2025-02-16 14:15:23,639 ߳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 14:15:23,639 ߳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 14:15:23,639 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_ashdtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,640 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_ashdtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,641 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_ashdtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,641 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_ashdtlMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:23,641 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_autoGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:23,641 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_autoSELECT * FROM cnas_analysis_auto Where 0=1
+¼ʱ䣺2025-02-16 14:15:23,641 ߳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 14:15:23,641 ߳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 14:15:23,641 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_auto Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,643 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_auto Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,643 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_auto Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,643 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_autoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:23,643 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_autodtlGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:23,644 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_autodtlSELECT * FROM cnas_analysis_autodtl Where 0=1
+¼ʱ䣺2025-02-16 14:15:23,644 ߳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 14:15:23,644 ߳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 14:15:23,644 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_autodtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,646 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_autodtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,646 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_autodtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,646 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_autodtlMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:23,646 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:23,646 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_calorificSELECT * FROM cnas_analysis_calorific Where 0=1
+¼ʱ䣺2025-02-16 14:15:23,647 ߳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 14:15:23,647 ߳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 14:15:23,647 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_calorific Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,648 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_calorific Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,649 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_calorific Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,649 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:23,649 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_calorificdtlGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:23,649 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_calorificdtlSELECT * FROM cnas_analysis_calorificdtl Where 0=1
+¼ʱ䣺2025-02-16 14:15:23,649 ߳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 14:15:23,649 ߳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 14:15:23,649 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_calorificdtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,651 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_calorificdtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,651 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_calorificdtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,651 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_calorificdtlMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:23,651 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_capacityGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:23,651 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_capacitySELECT * FROM cnas_analysis_capacity Where 0=1
+¼ʱ䣺2025-02-16 14:15:23,652 ߳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 14:15:23,652 ߳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 14:15:23,652 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_capacity Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,658 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_capacity Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,659 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_capacity Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,659 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_capacityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:23,659 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_capacitydtlGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:23,659 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_capacitydtlSELECT * FROM cnas_analysis_capacitydtl Where 0=1
+¼ʱ䣺2025-02-16 14:15:23,659 ߳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 14:15:23,660 ߳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 14:15:23,660 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_capacitydtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,661 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_capacitydtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,661 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_capacitydtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,661 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_capacitydtlMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:23,661 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:23,661 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_chnSELECT * FROM cnas_analysis_chn Where 0=1
+¼ʱ䣺2025-02-16 14:15:23,662 ߳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 14:15:23,662 ߳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 14:15:23,662 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_chn Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,663 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_chn Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,663 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_chn Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,663 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:23,663 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_chndtlGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:23,663 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_chndtlSELECT * FROM cnas_analysis_chndtl Where 0=1
+¼ʱ䣺2025-02-16 14:15:23,664 ߳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 14:15:23,664 ߳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 14:15:23,664 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_chndtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,665 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_chndtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,666 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_chndtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,666 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_chndtlMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:23,666 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:23,666 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_moistureSELECT * FROM cnas_analysis_moisture Where 0=1
+¼ʱ䣺2025-02-16 14:15:23,666 ߳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 14:15:23,666 ߳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 14:15:23,666 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_moisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,668 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_moisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,668 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_moisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,668 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:23,668 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_moisturedtlGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:23,668 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_moisturedtlSELECT * FROM cnas_analysis_moisturedtl Where 0=1
+¼ʱ䣺2025-02-16 14:15:23,669 ߳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 14:15:23,669 ߳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 14:15:23,669 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_moisturedtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,670 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_moisturedtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,670 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_moisturedtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,670 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_moisturedtlMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:23,670 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:23,671 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_stadSELECT * FROM cnas_analysis_stad Where 0=1
+¼ʱ䣺2025-02-16 14:15:23,671 ߳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 14:15:23,671 ߳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 14:15:23,671 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_stad Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,673 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_stad Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,673 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_stad Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,673 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:23,673 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_staddtlGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:23,673 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_staddtlSELECT * FROM cnas_analysis_staddtl Where 0=1
+¼ʱ䣺2025-02-16 14:15:23,674 ߳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 14:15:23,674 ߳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 14:15:23,674 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_staddtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,675 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_staddtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,676 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_staddtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,676 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_staddtlMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:23,676 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:23,676 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_totalmoistureSELECT * FROM cnas_analysis_totalmoisture Where 0=1
+¼ʱ䣺2025-02-16 14:15:23,676 ߳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 14:15:23,676 ߳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 14:15:23,676 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_totalmoisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,678 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_totalmoisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,678 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_totalmoisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,678 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:23,678 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_totalmoisturedtlGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:23,678 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_totalmoisturedtlSELECT * FROM cnas_analysis_totalmoisturedtl Where 0=1
+¼ʱ䣺2025-02-16 14:15:23,679 ߳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 14:15:23,679 ߳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 14:15:23,679 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_totalmoisturedtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,680 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_totalmoisturedtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,681 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_totalmoisturedtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,681 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_totalmoisturedtlMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:23,681 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:23,681 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_volatileSELECT * FROM cnas_analysis_volatile Where 0=1
+¼ʱ䣺2025-02-16 14:15:23,681 ߳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 14:15:23,681 ߳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 14:15:23,682 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_volatile Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,683 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_volatile Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,683 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_volatile Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,683 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:23,683 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_volatiledtlGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:23,683 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_volatiledtlSELECT * FROM cnas_analysis_volatiledtl Where 0=1
+¼ʱ䣺2025-02-16 14:15:23,684 ߳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 14:15:23,684 ߳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 14:15:23,684 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_volatiledtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,685 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_volatiledtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,685 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_volatiledtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,686 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_volatiledtlMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:23,686 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_deviceGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:23,686 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_deviceSELECT * FROM cnas_device Where 0=1
+¼ʱ䣺2025-02-16 14:15:23,686 ߳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 14:15:23,686 ߳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 14:15:23,686 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_device Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,688 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_device Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,688 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_device Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,688 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_deviceMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:23,688 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_facilityGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:23,688 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_facilitySELECT * FROM cnas_facility Where 0=1
+¼ʱ䣺2025-02-16 14:15:23,688 ߳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 14:15:23,689 ߳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 14:15:23,689 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_facility Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,690 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_facility Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,690 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_facility Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,690 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_facilityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:23,690 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:23,690 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_sampleSELECT * FROM cnas_sample Where 0=1
+¼ʱ䣺2025-02-16 14:15:23,691 ߳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 14:15:23,691 ߳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 14:15:23,691 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_sample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,693 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_sample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,693 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_sample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,693 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:23,693 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_staffGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:23,693 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_staffSELECT * FROM cnas_staff Where 0=1
+¼ʱ䣺2025-02-16 14:15:23,693 ߳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 14:15:23,693 ߳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 14:15:23,693 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_staff Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,695 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_staff Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,695 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_staff Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,695 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_staffMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:23,695 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_result_ikaGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:23,695 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_result_ikaSELECT * FROM coalweight_analysis_result_ika Where 0=1
+¼ʱ䣺2025-02-16 14:15:23,695 ߳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 14:15:23,696 ߳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 14:15:23,696 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalweight_analysis_result_ika Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,697 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalweight_analysis_result_ika Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,697 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalweight_analysis_result_ika Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,697 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_result_ikaMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:23,697 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dictGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:23,697 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dictSELECT * FROM dict Where 0=1
+¼ʱ䣺2025-02-16 14:15:23,698 ߳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 14:15:23,698 ߳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 14:15:23,698 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM dict Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,699 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM dict Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,699 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM dict Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,699 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dictMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:23,699 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===esb_tableGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:23,699 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===esb_tableSELECT * FROM esb_table Where 0=1
+¼ʱ䣺2025-02-16 14:15:23,700 ߳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 14:15:23,700 ߳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 14:15:23,700 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM esb_table Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,701 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM esb_table Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,701 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM esb_table Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,701 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===esb_tableMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:23,702 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:23,702 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileSELECT * FROM file Where 0=1
+¼ʱ䣺2025-02-16 14:15:23,702 ߳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 14:15:23,702 ߳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 14:15:23,702 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM file Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,703 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM file Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,704 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM file Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,704 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:23,704 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===flowtableGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:23,704 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===flowtableSELECT * FROM flowtable Where 0=1
+¼ʱ䣺2025-02-16 14:15:23,704 ߳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 14:15:23,704 ߳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 14:15:23,704 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM flowtable Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,706 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM flowtable Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,706 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM flowtable Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,706 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===flowtableMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:23,706 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===menuGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:23,706 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===menuSELECT * FROM menu Where 0=1
+¼ʱ䣺2025-02-16 14:15:23,706 ߳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 14:15:23,706 ߳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 14:15:23,707 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM menu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,708 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM menu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,708 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM menu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,708 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===menuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:23,708 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===orgGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:23,708 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===orgSELECT * FROM org Where 0=1
+¼ʱ䣺2025-02-16 14:15:23,709 ߳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 14:15:23,709 ߳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 14:15:23,709 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM org Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,710 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM org Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,710 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM org Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,710 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===orgMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:23,710 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===parameterGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:23,711 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===parameterSELECT * FROM parameter Where 0=1
+¼ʱ䣺2025-02-16 14:15:23,711 ߳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 14:15:23,711 ߳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 14:15:23,711 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM parameter Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,712 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM parameter Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,713 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM parameter Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,713 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===parameterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:23,713 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===roleGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:23,713 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===roleSELECT * FROM role Where 0=1
+¼ʱ䣺2025-02-16 14:15:23,713 ߳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 14:15:23,713 ߳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 14:15:23,713 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM role Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,715 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM role Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,715 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM role Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,715 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===roleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:23,715 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===role_menuGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:23,715 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===role_menuSELECT * FROM role_menu Where 0=1
+¼ʱ䣺2025-02-16 14:15:23,715 ߳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 14:15:23,716 ߳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 14:15:23,716 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM role_menu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,717 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM role_menu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,717 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM role_menu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,717 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===role_menuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:23,717 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===role_userGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:23,718 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===role_userSELECT * FROM role_user Where 0=1
+¼ʱ䣺2025-02-16 14:15:23,718 ߳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 14:15:23,718 ߳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 14:15:23,718 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM role_user Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,719 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM role_user Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,720 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM role_user Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,720 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===role_userMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:23,720 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmaterialGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:23,720 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmaterialSELECT * FROM standardmaterial Where 0=1
+¼ʱ䣺2025-02-16 14:15:23,720 ߳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 14:15:23,720 ߳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 14:15:23,720 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardmaterial Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,722 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM standardmaterial Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,722 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM standardmaterial Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,722 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmaterialMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:23,722 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===system_cacheGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:23,722 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===system_cacheSELECT * FROM system_cache Where 0=1
+¼ʱ䣺2025-02-16 14:15:23,723 ߳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 14:15:23,723 ߳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 14:15:23,723 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM system_cache Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,724 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM system_cache Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,724 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM system_cache Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,724 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===system_cacheMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:23,724 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tablemanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:23,724 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tablemanagementSELECT * FROM tablemanagement Where 0=1
+¼ʱ䣺2025-02-16 14:15:23,725 ߳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 14:15:23,725 ߳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 14:15:23,725 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tablemanagement Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,726 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tablemanagement Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,726 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tablemanagement Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,726 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tablemanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:23,726 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===task_remindGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:23,727 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===task_remindSELECT * FROM task_remind Where 0=1
+¼ʱ䣺2025-02-16 14:15:23,727 ߳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 14:15:23,727 ߳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 14:15:23,727 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM task_remind Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,728 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM task_remind Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,729 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM task_remind Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,729 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===task_remindMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:23,729 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalweightetltableGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:23,729 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalweightetltableSELECT * FROM tcoalweightetltable Where 0=1
+¼ʱ䣺2025-02-16 14:15:23,729 ߳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 14:15:23,729 ߳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 14:15:23,729 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalweightetltable Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,731 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tcoalweightetltable Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,731 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tcoalweightetltable Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,731 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalweightetltableMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:23,731 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:23,731 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testSELECT * FROM test Where 0=1
+¼ʱ䣺2025-02-16 14:15:23,731 ߳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 14:15:23,731 ߳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 14:15:23,731 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM test Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,733 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM test Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,733 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM test Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,733 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:23,733 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===urlGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:23,733 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===urlSELECT * FROM url Where 0=1
+¼ʱ䣺2025-02-16 14:15:23,734 ߳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 14:15:23,734 ߳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 14:15:23,734 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM url Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,735 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM url Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,735 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM url Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,735 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===urlMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:23,735 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===userGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:23,735 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===userSELECT * FROM user Where 0=1
+¼ʱ䣺2025-02-16 14:15:23,736 ߳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 14:15:23,736 ߳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 14:15:23,736 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM user Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,737 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM user Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,737 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM user Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,738 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===userMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:23,738 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===versioninfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:23,738 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===versioninfoSELECT * FROM versioninfo Where 0=1
+¼ʱ䣺2025-02-16 14:15:23,738 ߳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 14:15:23,738 ߳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 14:15:23,738 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM versioninfo Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,740 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM versioninfo Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,740 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM versioninfo Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,740 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===versioninfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:23,814 ߳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 14:15:23,815 ߳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 14:15:23,815 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,817 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,817 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,866 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-02-16 14:15:23,867 ߳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 14:15:23,867 ߳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 14:15:23,867 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,869 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,869 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:23,869 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,111 ߳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 14:15:36,111 ߳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 14:15:36,111 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='platform'System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,112 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='platform'System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,112 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='platform'System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,112 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_ge_bytearrayGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,112 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_ge_bytearraySELECT * FROM act_ge_bytearray Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,113 ߳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 14:15:36,113 ߳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 14:15:36,113 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ge_bytearray Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,113 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_ge_bytearray Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,113 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_ge_bytearray Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,113 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_ge_bytearrayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,113 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_ge_propertyGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,113 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_ge_propertySELECT * FROM act_ge_property Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,114 ߳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 14:15:36,114 ߳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 14:15:36,114 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ge_property Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,114 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_ge_property Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,114 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_ge_property Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,114 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_ge_propertyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,114 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_hi_actinstGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,115 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_hi_actinstSELECT * FROM act_hi_actinst Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,115 ߳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 14:15:36,115 ߳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 14:15:36,115 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_actinst Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,115 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_hi_actinst Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,115 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_hi_actinst Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,115 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_hi_actinstMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,116 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_hi_attachmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,116 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_hi_attachmentSELECT * FROM act_hi_attachment Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,116 ߳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 14:15:36,116 ߳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 14:15:36,116 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_attachment Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,116 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_hi_attachment Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,116 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_hi_attachment Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,117 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_hi_attachmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,117 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_hi_commentGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,117 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_hi_commentSELECT * FROM act_hi_comment Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,117 ߳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 14:15:36,117 ߳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 14:15:36,117 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_comment Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,117 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_hi_comment Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,117 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_hi_comment Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,118 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_hi_commentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,118 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_hi_detailGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,118 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_hi_detailSELECT * FROM act_hi_detail Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,118 ߳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 14:15:36,118 ߳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 14:15:36,118 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_detail Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,118 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_hi_detail Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,119 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_hi_detail Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,119 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_hi_detailMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,119 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_hi_identitylinkGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,119 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_hi_identitylinkSELECT * FROM act_hi_identitylink Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,119 ߳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 14:15:36,119 ߳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 14:15:36,119 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_identitylink Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,120 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_hi_identitylink Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,120 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_hi_identitylink Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,120 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_hi_identitylinkMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,120 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_hi_procinstGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,120 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_hi_procinstSELECT * FROM act_hi_procinst Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,120 ߳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 14:15:36,120 ߳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 14:15:36,121 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_procinst Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,121 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_hi_procinst Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,121 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_hi_procinst Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,121 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_hi_procinstMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,121 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_hi_taskinstGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,121 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_hi_taskinstSELECT * FROM act_hi_taskinst Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,122 ߳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 14:15:36,122 ߳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 14:15:36,122 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_taskinst Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,122 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_hi_taskinst Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,122 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_hi_taskinst Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,122 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_hi_taskinstMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,122 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_hi_varinstGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,122 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_hi_varinstSELECT * FROM act_hi_varinst Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,123 ߳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 14:15:36,123 ߳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 14:15:36,123 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_varinst Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,123 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_hi_varinst Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,123 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_hi_varinst Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,123 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_hi_varinstMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,123 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_id_groupGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,124 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_id_groupSELECT * FROM act_id_group Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,124 ߳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 14:15:36,124 ߳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 14:15:36,124 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_id_group Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,124 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_id_group Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,124 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_id_group Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,125 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_id_groupMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,125 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_id_infoGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,125 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_id_infoSELECT * FROM act_id_info Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,125 ߳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 14:15:36,125 ߳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 14:15:36,125 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_id_info Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,125 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_id_info Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,126 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_id_info Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,126 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_id_infoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,126 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_id_membershipGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,126 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_id_membershipSELECT * FROM act_id_membership Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,126 ߳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 14:15:36,126 ߳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 14:15:36,126 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_id_membership Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,126 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_id_membership Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,127 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_id_membership Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,127 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_id_membershipMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,127 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_id_userGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,130 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_id_userSELECT * FROM act_id_user Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,131 ߳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 14:15:36,131 ߳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 14:15:36,131 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_id_user Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,131 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_id_user Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,131 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_id_user Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,131 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_id_userMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,132 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_re_deploymentGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,132 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_re_deploymentSELECT * FROM act_re_deployment Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,132 ߳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 14:15:36,132 ߳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 14:15:36,132 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_re_deployment Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,132 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_re_deployment Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,132 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_re_deployment Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,132 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_re_deploymentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,133 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_re_modelGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,133 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_re_modelSELECT * FROM act_re_model Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,133 ߳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 14:15:36,133 ߳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 14:15:36,133 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_re_model Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,133 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_re_model Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,133 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_re_model Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,133 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_re_modelMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,134 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_re_procdefGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,134 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_re_procdefSELECT * FROM act_re_procdef Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,134 ߳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 14:15:36,134 ߳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 14:15:36,134 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_re_procdef Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,134 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_re_procdef Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,135 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_re_procdef Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,135 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_re_procdefMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,135 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_ru_event_subscrGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,135 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_ru_event_subscrSELECT * FROM act_ru_event_subscr Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,135 ߳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 14:15:36,135 ߳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 14:15:36,135 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ru_event_subscr Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,136 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_ru_event_subscr Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,136 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_ru_event_subscr Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,136 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_ru_event_subscrMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,136 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_ru_executionGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,136 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_ru_executionSELECT * FROM act_ru_execution Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,136 ߳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 14:15:36,136 ߳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 14:15:36,136 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ru_execution Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,137 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_ru_execution Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,137 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_ru_execution Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,137 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_ru_executionMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,137 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_ru_identitylinkGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,137 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_ru_identitylinkSELECT * FROM act_ru_identitylink Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,137 ߳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 14:15:36,137 ߳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 14:15:36,137 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ru_identitylink Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,138 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_ru_identitylink Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,138 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_ru_identitylink Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,138 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_ru_identitylinkMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,138 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_ru_jobGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,138 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_ru_jobSELECT * FROM act_ru_job Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,138 ߳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 14:15:36,138 ߳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 14:15:36,138 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ru_job Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,139 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_ru_job Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,139 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_ru_job Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,139 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_ru_jobMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,139 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_ru_taskGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,139 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_ru_taskSELECT * FROM act_ru_task Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,139 ߳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 14:15:36,140 ߳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 14:15:36,140 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ru_task Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,140 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_ru_task Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,140 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_ru_task Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,140 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_ru_taskMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,140 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_ru_variableGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,140 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_ru_variableSELECT * FROM act_ru_variable Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,140 ߳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 14:15:36,140 ߳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 14:15:36,140 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ru_variable Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,141 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_ru_variable Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,141 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_ru_variable Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,141 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_ru_variableMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,141 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,141 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_ashSELECT * FROM cnas_analysis_ash Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,141 ߳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 14:15:36,141 ߳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 14:15:36,141 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_ash Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,142 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_ash Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,142 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_ash Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,142 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,142 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_ashdtlGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,142 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_ashdtlSELECT * FROM cnas_analysis_ashdtl Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,142 ߳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 14:15:36,143 ߳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 14:15:36,143 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_ashdtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,143 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_ashdtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,143 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_ashdtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,143 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_ashdtlMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,143 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_autoGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,143 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_autoSELECT * FROM cnas_analysis_auto Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,144 ߳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 14:15:36,144 ߳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 14:15:36,144 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_auto Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,144 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_auto Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,145 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_auto Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,145 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_autoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,145 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_autodtlGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,145 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_autodtlSELECT * FROM cnas_analysis_autodtl Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,145 ߳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 14:15:36,145 ߳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 14:15:36,145 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_autodtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,146 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_autodtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,146 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_autodtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,146 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_autodtlMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,146 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,146 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_calorificSELECT * FROM cnas_analysis_calorific Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,146 ߳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 14:15:36,146 ߳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 14:15:36,146 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_calorific Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,147 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_calorific Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,147 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_calorific Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,147 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,147 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_calorificdtlGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,147 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_calorificdtlSELECT * FROM cnas_analysis_calorificdtl Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,148 ߳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 14:15:36,148 ߳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 14:15:36,148 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_calorificdtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,148 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_calorificdtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,148 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_calorificdtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,148 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_calorificdtlMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,148 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_capacityGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,148 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_capacitySELECT * FROM cnas_analysis_capacity Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,149 ߳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 14:15:36,149 ߳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 14:15:36,149 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_capacity Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,149 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_capacity Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,149 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_capacity Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,150 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_capacityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,150 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_capacitydtlGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,150 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_capacitydtlSELECT * FROM cnas_analysis_capacitydtl Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,150 ߳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 14:15:36,150 ߳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 14:15:36,150 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_capacitydtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,150 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_capacitydtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,151 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_capacitydtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,151 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_capacitydtlMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,151 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,151 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_chnSELECT * FROM cnas_analysis_chn Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,151 ߳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 14:15:36,151 ߳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 14:15:36,151 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_chn Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,152 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_chn Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,152 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_chn Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,152 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,152 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_chndtlGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,152 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_chndtlSELECT * FROM cnas_analysis_chndtl Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,152 ߳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 14:15:36,152 ߳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 14:15:36,152 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_chndtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,153 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_chndtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,153 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_chndtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,153 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_chndtlMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,153 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,153 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_moistureSELECT * FROM cnas_analysis_moisture Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,153 ߳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 14:15:36,154 ߳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 14:15:36,154 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_moisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,154 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_moisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,154 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_moisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,154 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,154 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_moisturedtlGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,154 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_moisturedtlSELECT * FROM cnas_analysis_moisturedtl Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,155 ߳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 14:15:36,155 ߳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 14:15:36,155 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_moisturedtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,155 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_moisturedtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,155 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_moisturedtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,155 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_moisturedtlMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,155 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,155 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_stadSELECT * FROM cnas_analysis_stad Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,156 ߳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 14:15:36,156 ߳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 14:15:36,156 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_stad Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,156 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_stad Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,156 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_stad Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,156 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,157 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_staddtlGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,157 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_staddtlSELECT * FROM cnas_analysis_staddtl Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,157 ߳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 14:15:36,157 ߳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 14:15:36,157 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_staddtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,157 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_staddtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,157 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_staddtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,158 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_staddtlMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,158 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,158 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_totalmoistureSELECT * FROM cnas_analysis_totalmoisture Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,158 ߳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 14:15:36,158 ߳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 14:15:36,158 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_totalmoisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,159 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_totalmoisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,159 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_totalmoisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,159 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,159 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_totalmoisturedtlGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,159 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_totalmoisturedtlSELECT * FROM cnas_analysis_totalmoisturedtl Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,160 ߳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 14:15:36,160 ߳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 14:15:36,160 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_totalmoisturedtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,160 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_totalmoisturedtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,160 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_totalmoisturedtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,160 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_totalmoisturedtlMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,160 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,160 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_volatileSELECT * FROM cnas_analysis_volatile Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,161 ߳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 14:15:36,161 ߳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 14:15:36,161 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_volatile Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,161 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_volatile Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,162 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_volatile Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,162 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,162 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_volatiledtlGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,162 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_volatiledtlSELECT * FROM cnas_analysis_volatiledtl Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,162 ߳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 14:15:36,162 ߳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 14:15:36,162 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_volatiledtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,162 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_volatiledtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,163 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_volatiledtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,163 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_volatiledtlMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,163 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_deviceGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,163 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_deviceSELECT * FROM cnas_device Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,163 ߳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 14:15:36,163 ߳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 14:15:36,163 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_device Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,164 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_device Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,164 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_device Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,164 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_deviceMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,164 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_facilityGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,164 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_facilitySELECT * FROM cnas_facility Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,164 ߳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 14:15:36,164 ߳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 14:15:36,165 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_facility Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,165 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_facility Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,165 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_facility Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,165 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_facilityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,165 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,165 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_sampleSELECT * FROM cnas_sample Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,166 ߳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 14:15:36,166 ߳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 14:15:36,166 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_sample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,166 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_sample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,166 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_sample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,166 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,166 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_staffGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,166 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_staffSELECT * FROM cnas_staff Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,167 ߳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 14:15:36,167 ߳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 14:15:36,167 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_staff Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,167 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_staff Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,167 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_staff Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,167 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_staffMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,167 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_result_ikaGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,168 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_result_ikaSELECT * FROM coalweight_analysis_result_ika Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,168 ߳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 14:15:36,168 ߳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 14:15:36,168 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalweight_analysis_result_ika Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,168 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalweight_analysis_result_ika Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,168 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalweight_analysis_result_ika Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,169 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_result_ikaMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,169 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dictGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,169 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dictSELECT * FROM dict Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,169 ߳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 14:15:36,169 ߳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 14:15:36,169 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM dict Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,169 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM dict Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,169 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM dict Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,170 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dictMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,170 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===esb_tableGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,170 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===esb_tableSELECT * FROM esb_table Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,170 ߳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 14:15:36,170 ߳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 14:15:36,170 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM esb_table Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,170 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM esb_table Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,170 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM esb_table Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,171 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===esb_tableMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,171 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,171 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileSELECT * FROM file Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,171 ߳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 14:15:36,171 ߳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 14:15:36,171 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM file Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,171 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM file Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,171 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM file Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,172 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,172 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===flowtableGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,172 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===flowtableSELECT * FROM flowtable Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,172 ߳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 14:15:36,172 ߳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 14:15:36,172 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM flowtable Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,172 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM flowtable Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,172 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM flowtable Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,172 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===flowtableMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,173 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===menuGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,173 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===menuSELECT * FROM menu Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,173 ߳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 14:15:36,173 ߳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 14:15:36,173 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM menu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,173 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM menu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,174 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM menu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,174 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===menuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,174 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===orgGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,174 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===orgSELECT * FROM org Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,174 ߳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 14:15:36,174 ߳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 14:15:36,174 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM org Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,174 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM org Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,175 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM org Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,175 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===orgMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,175 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===parameterGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,175 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===parameterSELECT * FROM parameter Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,175 ߳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 14:15:36,175 ߳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 14:15:36,175 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM parameter Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,176 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM parameter Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,176 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM parameter Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,176 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===parameterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,176 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===roleGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,176 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===roleSELECT * FROM role Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,176 ߳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 14:15:36,176 ߳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 14:15:36,176 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM role Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,177 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM role Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,177 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM role Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,177 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===roleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,177 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===role_menuGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,177 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===role_menuSELECT * FROM role_menu Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,177 ߳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 14:15:36,177 ߳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 14:15:36,177 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM role_menu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,178 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM role_menu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,178 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM role_menu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,178 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===role_menuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,178 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===role_userGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,178 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===role_userSELECT * FROM role_user Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,178 ߳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 14:15:36,178 ߳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 14:15:36,178 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM role_user Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,179 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM role_user Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,179 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM role_user Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,179 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===role_userMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,179 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmaterialGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,179 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmaterialSELECT * FROM standardmaterial Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,180 ߳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 14:15:36,180 ߳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 14:15:36,180 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardmaterial Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,180 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM standardmaterial Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,180 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM standardmaterial Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,180 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmaterialMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,181 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===system_cacheGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,181 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===system_cacheSELECT * FROM system_cache Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,181 ߳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 14:15:36,181 ߳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 14:15:36,181 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM system_cache Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,181 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM system_cache Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,182 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM system_cache Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,182 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===system_cacheMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,182 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tablemanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,182 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tablemanagementSELECT * FROM tablemanagement Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,182 ߳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 14:15:36,182 ߳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 14:15:36,182 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tablemanagement Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,182 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tablemanagement Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,183 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tablemanagement Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,183 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tablemanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,183 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===task_remindGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,183 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===task_remindSELECT * FROM task_remind Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,183 ߳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 14:15:36,183 ߳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 14:15:36,183 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM task_remind Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,183 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM task_remind Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,184 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM task_remind Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,184 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===task_remindMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,184 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalweightetltableGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,184 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalweightetltableSELECT * FROM tcoalweightetltable Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,184 ߳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 14:15:36,184 ߳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 14:15:36,184 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalweightetltable Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,184 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tcoalweightetltable Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,185 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tcoalweightetltable Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,185 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalweightetltableMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,185 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,185 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testSELECT * FROM test Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,185 ߳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 14:15:36,185 ߳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 14:15:36,185 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM test Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,186 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM test Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,186 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM test Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,186 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,186 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===urlGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,186 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===urlSELECT * FROM url Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,186 ߳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 14:15:36,186 ߳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 14:15:36,186 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM url Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,187 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM url Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,187 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM url Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,187 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===urlMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,187 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===userGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,187 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===userSELECT * FROM user Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,187 ߳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 14:15:36,187 ߳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 14:15:36,187 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM user Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,188 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM user Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,188 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM user Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,188 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===userMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,188 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===versioninfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,188 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===versioninfoSELECT * FROM versioninfo Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,188 ߳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 14:15:36,188 ߳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 14:15:36,188 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM versioninfo Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,189 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM versioninfo Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,189 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM versioninfo Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,189 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===versioninfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,218 ߳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 14:15:36,218 ߳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 14:15:36,218 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,220 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,220 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,264 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,264 ߳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 14:15:36,264 ߳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 14:15:36,264 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,264 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,264 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,264 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,281 ߳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 14:15:36,281 ߳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 14:15:36,281 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='platform'System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,283 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='platform'System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,283 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='platform'System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,283 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_ge_bytearrayGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,283 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_ge_bytearraySELECT * FROM act_ge_bytearray Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,283 ߳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 14:15:36,283 ߳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 14:15:36,283 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ge_bytearray Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,284 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_ge_bytearray Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,284 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_ge_bytearray Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,284 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_ge_bytearrayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,284 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_ge_propertyGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,284 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_ge_propertySELECT * FROM act_ge_property Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,284 ߳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 14:15:36,284 ߳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 14:15:36,285 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ge_property Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,285 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_ge_property Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,285 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_ge_property Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,285 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_ge_propertyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,285 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_hi_actinstGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,285 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_hi_actinstSELECT * FROM act_hi_actinst Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,286 ߳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 14:15:36,286 ߳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 14:15:36,286 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_actinst Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,286 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_hi_actinst Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,286 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_hi_actinst Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,286 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_hi_actinstMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,287 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_hi_attachmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,287 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_hi_attachmentSELECT * FROM act_hi_attachment Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,287 ߳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 14:15:36,287 ߳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 14:15:36,287 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_attachment Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,288 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_hi_attachment Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,288 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_hi_attachment Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,288 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_hi_attachmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,288 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_hi_commentGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,288 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_hi_commentSELECT * FROM act_hi_comment Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,288 ߳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 14:15:36,288 ߳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 14:15:36,289 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_comment Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,289 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_hi_comment Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,289 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_hi_comment Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,289 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_hi_commentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,289 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_hi_detailGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,289 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_hi_detailSELECT * FROM act_hi_detail Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,290 ߳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 14:15:36,290 ߳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 14:15:36,290 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_detail Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,290 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_hi_detail Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,290 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_hi_detail Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,290 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_hi_detailMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,290 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_hi_identitylinkGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,290 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_hi_identitylinkSELECT * FROM act_hi_identitylink Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,291 ߳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 14:15:36,291 ߳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 14:15:36,291 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_identitylink Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,291 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_hi_identitylink Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,291 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_hi_identitylink Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,291 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_hi_identitylinkMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,291 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_hi_procinstGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,292 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_hi_procinstSELECT * FROM act_hi_procinst Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,292 ߳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 14:15:36,292 ߳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 14:15:36,292 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_procinst Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,292 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_hi_procinst Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,292 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_hi_procinst Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,293 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_hi_procinstMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,293 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_hi_taskinstGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,293 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_hi_taskinstSELECT * FROM act_hi_taskinst Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,293 ߳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 14:15:36,293 ߳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 14:15:36,293 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_taskinst Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,293 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_hi_taskinst Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,294 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_hi_taskinst Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,294 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_hi_taskinstMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,294 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_hi_varinstGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,294 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_hi_varinstSELECT * FROM act_hi_varinst Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,294 ߳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 14:15:36,294 ߳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 14:15:36,294 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_hi_varinst Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,294 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_hi_varinst Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,295 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_hi_varinst Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,295 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_hi_varinstMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,295 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_id_groupGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,295 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_id_groupSELECT * FROM act_id_group Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,295 ߳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 14:15:36,295 ߳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 14:15:36,295 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_id_group Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,298 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_id_group Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,299 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_id_group Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,299 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_id_groupMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,299 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_id_infoGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,299 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_id_infoSELECT * FROM act_id_info Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,299 ߳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 14:15:36,299 ߳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 14:15:36,299 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_id_info Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,300 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_id_info Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,300 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_id_info Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,300 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_id_infoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,300 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_id_membershipGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,300 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_id_membershipSELECT * FROM act_id_membership Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,300 ߳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 14:15:36,300 ߳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 14:15:36,300 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_id_membership Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,301 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_id_membership Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,301 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_id_membership Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,301 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_id_membershipMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,301 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_id_userGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,301 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_id_userSELECT * FROM act_id_user Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,301 ߳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 14:15:36,302 ߳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 14:15:36,302 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_id_user Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,302 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_id_user Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,302 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_id_user Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,302 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_id_userMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,302 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_re_deploymentGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,302 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_re_deploymentSELECT * FROM act_re_deployment Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,303 ߳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 14:15:36,303 ߳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 14:15:36,303 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_re_deployment Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,303 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_re_deployment Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,303 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_re_deployment Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,303 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_re_deploymentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,303 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_re_modelGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,303 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_re_modelSELECT * FROM act_re_model Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,304 ߳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 14:15:36,304 ߳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 14:15:36,304 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_re_model Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,304 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_re_model Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,304 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_re_model Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,304 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_re_modelMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,304 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_re_procdefGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,304 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_re_procdefSELECT * FROM act_re_procdef Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,305 ߳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 14:15:36,305 ߳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 14:15:36,305 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_re_procdef Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,305 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_re_procdef Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,305 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_re_procdef Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,305 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_re_procdefMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,305 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_ru_event_subscrGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,305 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_ru_event_subscrSELECT * FROM act_ru_event_subscr Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,306 ߳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 14:15:36,306 ߳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 14:15:36,306 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ru_event_subscr Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,306 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_ru_event_subscr Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,306 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_ru_event_subscr Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,306 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_ru_event_subscrMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,306 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_ru_executionGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,307 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_ru_executionSELECT * FROM act_ru_execution Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,307 ߳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 14:15:36,307 ߳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 14:15:36,307 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ru_execution Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,307 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_ru_execution Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,308 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_ru_execution Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,308 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_ru_executionMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,308 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_ru_identitylinkGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,308 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_ru_identitylinkSELECT * FROM act_ru_identitylink Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,308 ߳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 14:15:36,308 ߳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 14:15:36,308 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ru_identitylink Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,309 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_ru_identitylink Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,309 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_ru_identitylink Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,309 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_ru_identitylinkMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,309 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_ru_jobGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,309 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_ru_jobSELECT * FROM act_ru_job Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,309 ߳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 14:15:36,309 ߳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 14:15:36,309 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ru_job Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,310 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_ru_job Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,310 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_ru_job Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,310 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_ru_jobMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,310 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_ru_taskGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,310 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_ru_taskSELECT * FROM act_ru_task Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,310 ߳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 14:15:36,310 ߳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 14:15:36,311 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ru_task Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,311 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_ru_task Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,311 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_ru_task Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,311 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_ru_taskMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,311 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===act_ru_variableGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,311 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===act_ru_variableSELECT * FROM act_ru_variable Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,311 ߳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 14:15:36,312 ߳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 14:15:36,312 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM act_ru_variable Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,312 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM act_ru_variable Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,312 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM act_ru_variable Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,312 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===act_ru_variableMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,312 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,312 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_ashSELECT * FROM cnas_analysis_ash Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,313 ߳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 14:15:36,313 ߳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 14:15:36,313 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_ash Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,313 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_ash Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,313 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_ash Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,313 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,313 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_ashdtlGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,313 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_ashdtlSELECT * FROM cnas_analysis_ashdtl Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,314 ߳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 14:15:36,314 ߳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 14:15:36,314 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_ashdtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,314 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_ashdtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,314 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_ashdtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,314 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_ashdtlMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,314 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_autoGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,315 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_autoSELECT * FROM cnas_analysis_auto Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,315 ߳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 14:15:36,315 ߳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 14:15:36,315 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_auto Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,316 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_auto Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,316 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_auto Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,316 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_autoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,316 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_autodtlGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,316 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_autodtlSELECT * FROM cnas_analysis_autodtl Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,316 ߳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 14:15:36,316 ߳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 14:15:36,316 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_autodtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,317 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_autodtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,317 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_autodtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,317 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_autodtlMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,317 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,317 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_calorificSELECT * FROM cnas_analysis_calorific Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,317 ߳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 14:15:36,317 ߳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 14:15:36,317 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_calorific Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,318 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_calorific Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,318 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_calorific Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,318 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,318 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_calorificdtlGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,318 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_calorificdtlSELECT * FROM cnas_analysis_calorificdtl Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,319 ߳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 14:15:36,319 ߳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 14:15:36,319 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_calorificdtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,319 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_calorificdtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,319 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_calorificdtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,319 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_calorificdtlMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,319 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_capacityGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,319 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_capacitySELECT * FROM cnas_analysis_capacity Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,320 ߳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 14:15:36,320 ߳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 14:15:36,320 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_capacity Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,320 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_capacity Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,320 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_capacity Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,321 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_capacityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,321 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_capacitydtlGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,321 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_capacitydtlSELECT * FROM cnas_analysis_capacitydtl Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,321 ߳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 14:15:36,321 ߳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 14:15:36,321 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_capacitydtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,321 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_capacitydtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,322 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_capacitydtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,322 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_capacitydtlMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,322 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,322 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_chnSELECT * FROM cnas_analysis_chn Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,322 ߳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 14:15:36,322 ߳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 14:15:36,322 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_chn Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,323 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_chn Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,323 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_chn Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,323 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,323 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_chndtlGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,323 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_chndtlSELECT * FROM cnas_analysis_chndtl Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,323 ߳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 14:15:36,323 ߳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 14:15:36,323 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_chndtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,324 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_chndtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,324 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_chndtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,324 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_chndtlMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,324 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,324 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_moistureSELECT * FROM cnas_analysis_moisture Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,324 ߳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 14:15:36,324 ߳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 14:15:36,325 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_moisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,325 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_moisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,325 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_moisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,325 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,325 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_moisturedtlGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,325 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_moisturedtlSELECT * FROM cnas_analysis_moisturedtl Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,326 ߳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 14:15:36,326 ߳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 14:15:36,326 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_moisturedtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,326 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_moisturedtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,326 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_moisturedtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,326 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_moisturedtlMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,326 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,326 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_stadSELECT * FROM cnas_analysis_stad Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,326 ߳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 14:15:36,326 ߳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 14:15:36,326 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_stad Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,327 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_stad Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,327 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_stad Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,327 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,327 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_staddtlGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,327 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_staddtlSELECT * FROM cnas_analysis_staddtl Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,327 ߳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 14:15:36,327 ߳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 14:15:36,328 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_staddtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,328 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_staddtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,328 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_staddtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,328 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_staddtlMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,328 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,328 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_totalmoistureSELECT * FROM cnas_analysis_totalmoisture Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,328 ߳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 14:15:36,329 ߳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 14:15:36,329 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_totalmoisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,329 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_totalmoisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,329 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_totalmoisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,329 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,329 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_totalmoisturedtlGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,329 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_totalmoisturedtlSELECT * FROM cnas_analysis_totalmoisturedtl Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,330 ߳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 14:15:36,330 ߳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 14:15:36,330 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_totalmoisturedtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,330 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_totalmoisturedtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,330 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_totalmoisturedtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,330 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_totalmoisturedtlMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,330 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,330 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_volatileSELECT * FROM cnas_analysis_volatile Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,331 ߳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 14:15:36,331 ߳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 14:15:36,331 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_volatile Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,332 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_volatile Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,332 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_volatile Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,332 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,332 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_volatiledtlGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,332 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_volatiledtlSELECT * FROM cnas_analysis_volatiledtl Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,333 ߳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 14:15:36,333 ߳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 14:15:36,333 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_volatiledtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,333 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_volatiledtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,333 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_volatiledtl Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,333 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_volatiledtlMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,333 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_deviceGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,333 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_deviceSELECT * FROM cnas_device Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,334 ߳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 14:15:36,334 ߳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 14:15:36,334 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_device Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,334 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_device Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,334 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_device Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,334 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_deviceMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,334 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_facilityGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,335 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_facilitySELECT * FROM cnas_facility Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,335 ߳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 14:15:36,335 ߳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 14:15:36,335 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_facility Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,335 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_facility Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,335 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_facility Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,335 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_facilityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,335 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,336 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_sampleSELECT * FROM cnas_sample Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,336 ߳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 14:15:36,336 ߳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 14:15:36,336 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_sample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,336 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_sample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,336 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_sample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,336 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,336 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_staffGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,337 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_staffSELECT * FROM cnas_staff Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,337 ߳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 14:15:36,337 ߳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 14:15:36,337 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_staff Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,337 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_staff Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,337 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_staff Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,337 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_staffMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,338 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_result_ikaGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,338 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_result_ikaSELECT * FROM coalweight_analysis_result_ika Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,338 ߳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 14:15:36,338 ߳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 14:15:36,338 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalweight_analysis_result_ika Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,338 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalweight_analysis_result_ika Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,338 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalweight_analysis_result_ika Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,339 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_result_ikaMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,339 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dictGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,339 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dictSELECT * FROM dict Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,339 ߳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 14:15:36,339 ߳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 14:15:36,339 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM dict Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,339 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM dict Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,340 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM dict Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,340 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dictMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,340 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===esb_tableGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,340 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===esb_tableSELECT * FROM esb_table Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,340 ߳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 14:15:36,340 ߳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 14:15:36,340 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM esb_table Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,340 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM esb_table Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,341 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM esb_table Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,341 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===esb_tableMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,341 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,341 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileSELECT * FROM file Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,341 ߳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 14:15:36,341 ߳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 14:15:36,341 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM file Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,342 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM file Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,342 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM file Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,342 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,342 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===flowtableGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,342 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===flowtableSELECT * FROM flowtable Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,342 ߳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 14:15:36,342 ߳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 14:15:36,342 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM flowtable Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,343 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM flowtable Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,343 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM flowtable Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,343 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===flowtableMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,343 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===menuGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,343 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===menuSELECT * FROM menu Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,343 ߳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 14:15:36,343 ߳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 14:15:36,343 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM menu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,344 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM menu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,344 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM menu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,344 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===menuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,344 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===orgGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,344 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===orgSELECT * FROM org Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,344 ߳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 14:15:36,344 ߳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 14:15:36,344 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM org Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,345 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM org Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,345 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM org Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,345 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===orgMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,345 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===parameterGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,345 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===parameterSELECT * FROM parameter Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,345 ߳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 14:15:36,345 ߳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 14:15:36,345 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM parameter Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,346 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM parameter Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,346 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM parameter Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,346 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===parameterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,346 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===roleGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,346 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===roleSELECT * FROM role Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,346 ߳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 14:15:36,346 ߳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 14:15:36,347 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM role Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,347 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM role Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,347 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM role Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,347 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===roleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,347 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===role_menuGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,347 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===role_menuSELECT * FROM role_menu Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,347 ߳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 14:15:36,348 ߳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 14:15:36,348 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM role_menu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,348 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM role_menu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,348 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM role_menu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,348 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===role_menuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,348 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===role_userGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,348 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===role_userSELECT * FROM role_user Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,348 ߳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 14:15:36,349 ߳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 14:15:36,349 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM role_user Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,349 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM role_user Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,349 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM role_user Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,349 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===role_userMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,349 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmaterialGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,349 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmaterialSELECT * FROM standardmaterial Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,349 ߳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 14:15:36,350 ߳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 14:15:36,350 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardmaterial Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,350 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM standardmaterial Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,350 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM standardmaterial Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,350 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmaterialMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,350 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===system_cacheGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,350 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===system_cacheSELECT * FROM system_cache Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,351 ߳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 14:15:36,351 ߳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 14:15:36,351 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM system_cache Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,351 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM system_cache Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,351 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM system_cache Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,351 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===system_cacheMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,351 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tablemanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,351 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tablemanagementSELECT * FROM tablemanagement Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,352 ߳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 14:15:36,352 ߳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 14:15:36,352 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tablemanagement Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,352 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tablemanagement Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,352 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tablemanagement Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,352 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tablemanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,352 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===task_remindGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,353 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===task_remindSELECT * FROM task_remind Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,353 ߳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 14:15:36,353 ߳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 14:15:36,353 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM task_remind Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,353 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM task_remind Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,353 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM task_remind Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,353 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===task_remindMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,354 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalweightetltableGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,354 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalweightetltableSELECT * FROM tcoalweightetltable Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,354 ߳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 14:15:36,354 ߳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 14:15:36,354 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalweightetltable Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,354 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tcoalweightetltable Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,354 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tcoalweightetltable Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,354 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalweightetltableMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,355 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,355 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testSELECT * FROM test Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,355 ߳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 14:15:36,355 ߳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 14:15:36,355 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM test Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,355 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM test Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,355 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM test Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,355 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,356 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===urlGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,356 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===urlSELECT * FROM url Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,356 ߳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 14:15:36,356 ߳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 14:15:36,356 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM url Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,356 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM url Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,356 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM url Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,356 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===urlMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,357 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===userGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,357 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===userSELECT * FROM user Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,357 ߳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 14:15:36,357 ߳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 14:15:36,357 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM user Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,357 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM user Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,357 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM user Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,358 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===userMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,358 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===versioninfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-16 14:15:36,358 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===versioninfoSELECT * FROM versioninfo Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,358 ߳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 14:15:36,358 ߳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 14:15:36,358 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM versioninfo Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,358 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM versioninfo Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,359 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM versioninfo Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,359 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===versioninfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-16 14:15:36,399 ߳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 14:15:36,399 ߳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 14:15:36,399 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,401 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,401 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,444 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-02-16 14:15:36,445 ߳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 14:15:36,445 ߳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 14:15:36,445 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-16 14:15:36,445 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺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
diff --git a/dll/SyncLocalDAL.dll b/dll/SyncLocalDAL.dll
index e69d6cb..c3a4b2e 100644
Binary files a/dll/SyncLocalDAL.dll and b/dll/SyncLocalDAL.dll differ
diff --git a/dll/WF-ChangeGUID.exe b/dll/WF-ChangeGUID.exe
index 6af32e1..e886726 100644
Binary files a/dll/WF-ChangeGUID.exe and b/dll/WF-ChangeGUID.exe differ
diff --git a/dll/activation.config b/dll/activation.config
index db2a85c..33cc8aa 100644
--- a/dll/activation.config
+++ b/dll/activation.config
@@ -1 +1 @@
-BFEBFBFF000B06A2_7413EA0CEB72_7613EA0CEB71_7413EA0CEB71
\ No newline at end of file
+BFEBFBFF000A0652_B025AA3FD303_00FF7AB4C9BA_8C554AD3D7A5_8E554AD3D7A4_8C554AD3D7A4_8C554AD3D7A8
\ No newline at end of file