|
|
@ -1,9 +1,9 @@ |
|
|
|
using System; |
|
|
|
using System.Collections.Generic; |
|
|
|
using System.Linq; |
|
|
|
using System.Web; |
|
|
|
using PetaPoco; |
|
|
|
using System.Web.Mvc; |
|
|
|
|
|
|
|
using Pingchuan.BeijingSafeguard.BLL; |
|
|
|
using Pingchuan.BeijingSafeguard.Model; |
|
|
|
|
|
|
|
namespace Pingchuan.BeijingSafeguard.App.Controllers |
|
|
|
{ |
|
|
|
public class StatisticAnalysisController : Controller |
|
|
@ -13,5 +13,12 @@ namespace Pingchuan.BeijingSafeguard.App.Controllers |
|
|
|
{ |
|
|
|
return View(); |
|
|
|
} |
|
|
|
|
|
|
|
[HttpPost] |
|
|
|
public JsonResult Query(int pageIndex, int pageSize) |
|
|
|
{ |
|
|
|
Page<User> users = UserBLL.Query(pageIndex, pageSize); |
|
|
|
return Json(users); |
|
|
|
} |
|
|
|
} |
|
|
|
} |