From 9a720389818222b8d8cd6da35f48fd230980bb37 Mon Sep 17 00:00:00 2001 From: fanwensheng Date: Thu, 13 Jan 2022 22:35:35 +0800 Subject: [PATCH] Update --- .../App/Controllers/StatisticAnalysisController.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/04.系统编码/App/Controllers/StatisticAnalysisController.cs b/04.系统编码/App/Controllers/StatisticAnalysisController.cs index a963c68..9f2b817 100644 --- a/04.系统编码/App/Controllers/StatisticAnalysisController.cs +++ b/04.系统编码/App/Controllers/StatisticAnalysisController.cs @@ -17,8 +17,8 @@ namespace Pingchuan.BeijingSafeguard.App.Controllers [HttpPost] public JsonResult Query(DateTime fromTime, DateTime toTime, int page, int rows) { - Pagination page = ComputeBLL.Statistics(fromTime, toTime, page, rows); - return Json(page); + Pagination pagination = ComputeBLL.Statistics(fromTime, toTime, page, rows); + return Json(pagination); } } } \ No newline at end of file