From 581546105168066ac543109b8f810047208dc82c Mon Sep 17 00:00:00 2001 From: xxe Date: Mon, 21 Nov 2022 09:49:15 +0800 Subject: [PATCH] =?UTF-8?q?=E6=97=A5=E5=BF=97=E8=AE=B0=E5=BD=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- HKCardOUT/Logic/Service/HKCore.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/HKCardOUT/Logic/Service/HKCore.cs b/HKCardOUT/Logic/Service/HKCore.cs index e9f1927..b5ce055 100644 --- a/HKCardOUT/Logic/Service/HKCore.cs +++ b/HKCardOUT/Logic/Service/HKCore.cs @@ -299,6 +299,7 @@ namespace HKCardOUT.Logic.Service public Dictionary GetDayData() { var today = DateTime.Parse(DateTime.Now.ToString("yyyy-MM-dd 00:00:00")); + HKLogImport.WriteInfo("当前时间:"+ today); var count = DbContext.Context.Queryable().Select(t => t.Location).ToList(); return count.GroupBy(t => t).ToDictionary(t => t.Key, t => t.Count()); }