Commit 0eb568f1 authored by liudong1993's avatar liudong1993

1

parent f9f0fe36
......@@ -528,12 +528,12 @@ namespace Edu.Education.Helper
{
Console.WriteLine("开始执行营收报表....");
FinanceModule financeModule = new FinanceModule();
financeModule.SetEduRevenueReport(100000, "2020-01-01", false);
financeModule.SetEduRevenueReport(100000, DateTime.Now.AddYears(-2).ToString("yyyy-MM-dd"), false);
Console.WriteLine("结束执行营收报表....");
Console.WriteLine("开始执行简易报表....");
financeModule.InsertBatchSimple_V2(100000, 2020);
financeModule.InsertBatchSimple_V2(100000, 2021);
financeModule.InsertBatchSimple_V2(100000, 2022);
//financeModule.InsertBatchSimple_V2(100000, 2020);
financeModule.InsertBatchSimple_V2(100000, DateTime.Now.Year);
financeModule.InsertBatchSimple_V2(100000, DateTime.Now.Year - 1);
Console.WriteLine("结束执行简易报表....");
}
catch (Exception ex)
......
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