|
|
@ -15,12 +15,14 @@ namespace Pingchuan.BeijingSafeguard.App.Controllers |
|
|
|
return View(); |
|
|
|
} |
|
|
|
|
|
|
|
public static int Update(Config config) |
|
|
|
[HttpPost] |
|
|
|
public int Update(Config config) |
|
|
|
{ |
|
|
|
return ConfigBLL.Update(config); |
|
|
|
} |
|
|
|
|
|
|
|
public static List<Config> Query(int pageIndex, int pageSize) |
|
|
|
[HttpPost] |
|
|
|
public List<Config> Query(int pageIndex, int pageSize) |
|
|
|
{ |
|
|
|
return ConfigBLL.Query(pageIndex, pageSize); |
|
|
|
} |
|
|
|