Commit 9a900beb by 泽锋 李

fix

parent 92eda340
...@@ -146,7 +146,7 @@ namespace AutoTurnOver.DB.Base ...@@ -146,7 +146,7 @@ namespace AutoTurnOver.DB.Base
/// <typeparam name="T"></typeparam> /// <typeparam name="T"></typeparam>
/// <param name="entities"></param> /// <param name="entities"></param>
/// <param name="exclude">排除的字段</param> /// <param name="exclude">排除的字段</param>
public static int BatchInsert_bak<T>(this MySqlConnection conn, List<T> entities, string[] exclude = null) public static int BatchInsert<T>(this MySqlConnection conn, List<T> entities,string tableName, string[] exclude = null)
{ {
if (exclude == null || exclude.Length <= 0) if (exclude == null || exclude.Length <= 0)
exclude = new[] { "id" }; exclude = new[] { "id" };
...@@ -210,7 +210,7 @@ namespace AutoTurnOver.DB.Base ...@@ -210,7 +210,7 @@ namespace AutoTurnOver.DB.Base
/// <param name="connectionString">目标连接字符</param> /// <param name="connectionString">目标连接字符</param>
/// <param name="TableName">目标表</param> /// <param name="TableName">目标表</param>
/// <param name="dt">源数据</param> /// <param name="dt">源数据</param>
public static int BatchInsert<T>(this MySqlConnection _conn,IList<T> list, string tableName) public static int BatchInsert_bak<T>(this MySqlConnection _conn,IList<T> list, string tableName)
{ {
System.Diagnostics.Stopwatch watch = new System.Diagnostics.Stopwatch(); System.Diagnostics.Stopwatch watch = new System.Diagnostics.Stopwatch();
watch.Start();//开始计时 watch.Start();//开始计时
......
...@@ -28,7 +28,7 @@ namespace AutoTurnOver.DB ...@@ -28,7 +28,7 @@ namespace AutoTurnOver.DB
var conn = _connection; var conn = _connection;
conn.Open(); conn.Open();
int page = 1; int page = 1;
int rows = 1000; int rows = 10000;
List<dc_report_cash_flow_config> configs = conn.Query<dc_report_cash_flow_config>(" select * from dc_report_cash_flow_config ").AsList(); List<dc_report_cash_flow_config> configs = conn.Query<dc_report_cash_flow_config>(" select * from dc_report_cash_flow_config ").AsList();
while (true) while (true)
{ {
......
...@@ -14,16 +14,16 @@ namespace ResetOutofstock ...@@ -14,16 +14,16 @@ namespace ResetOutofstock
{ {
Console.WriteLine("刷新缺货数据任务启动..."); Console.WriteLine("刷新缺货数据任务启动...");
//report_cash_flow_dao.CalculationOrderCostLogistics(now.AddMonths(-3), DateTime.Parse(now.AddDays(-1).ToString("yyyy-MM-dd 23:59:59"))); //report_cash_flow_dao.CalculationOrderCostLogistics(now.AddMonths(-3), DateTime.Parse(now.AddDays(-1).ToString("yyyy-MM-dd 23:59:59")));
try //try
{ //{
var now = DateTime.Now; // var now = DateTime.Now;
report_cash_flow_dao.CalculationOrder(now.AddMonths(-3), DateTime.Parse(now.ToString("yyyy-MM-dd 23:59:59"))); // report_cash_flow_dao.CalculationOrder(now.AddMonths(-3), DateTime.Parse(now.ToString("yyyy-MM-dd 23:59:59")));
} //}
catch (Exception ex) //catch (Exception ex)
{ //{
throw; // throw;
} //}
var builder = new HostBuilder().ConfigureServices((hostContext, services) => var builder = new HostBuilder().ConfigureServices((hostContext, services) =>
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment