提交当前本机整理版本

This commit is contained in:
cyf
2026-07-02 10:11:39 +00:00
parent c10a5d64c7
commit aacefa24f8
822 changed files with 196665 additions and 14263 deletions
+37 -1
View File
@@ -835,4 +835,40 @@ namespace Lskj.QueryEssentialInfo
{N(ljfy)}, {N(yxkcdsf)}, {S(bz)}, {N(qpcykse)}, {N(bpcybtse)},
{S(batchId)},{S(skssq)}
);";
sqlBu
sqlBuilder.AppendLine(sql);
}
if (!string.IsNullOrEmpty(sqlBuilder.ToString()))
{
SqlHelper.ExecuteNonQuery(sqlBuilder.ToString());
}
}
Invoke(new Action(() =>
{
this.Close();
}));
}
/// <summary>
/// 显示当前文件
/// </summary>
/// <param name="text"></param>
private void SetProcessMsg(string text)
{
labelCurrentItem.Invoke(new Action(() =>
{
labelCurrentItem.Text = text;
}));
}
/// <summary>
/// 显示当前进度
/// </summary>
/// <param name="current"></param>
/// <param name="total"></param>
private void SetProcessBar()
{
Invoke(new Action(() =>
{
progressBarCurrent.Value += 1;
}));
}
}
}