You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

31 lines
716 B

using PetaPoco;
using System.Web.Mvc;
using System.Collections.Generic;
using Pingchuan.BeijingSafeguard.BLL;
using Pingchuan.BeijingSafeguard.Model;
namespace Pingchuan.BeijingSafeguard.App.Controllers
{
public class ConfigManagementController : BaseController
{
// GET: ConfigManagement
public ActionResult Index()
{
return View();
}
[HttpPost]
public int Update(Config config)
{
return ConfigBLL.Update(config);
}
[HttpPost]
public JsonResult Query(int page, int rows)
{
List<Config> configs = ConfigBLL.Query(page, rows);
return Json(configs);
}
}
}