门口门禁处理

pull/10/head
zhaoyu 2024-01-21 17:37:50 +08:00
parent 7a721799b7
commit 332f52244c
1 changed files with 6 additions and 6 deletions

View File

@ -27,7 +27,7 @@ import java.util.Map;
* www.zcloudchina.com
*/
@Controller
@RequestMapping("/mkmjAreaGate")
@RequestMapping("/mkmjGateLog")
public class MkmjGateLogController extends BaseController {
@Autowired
@ -38,7 +38,7 @@ public class MkmjGateLogController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/add")
@RequiresPermissions("mkmjAreaGate:add")
@RequiresPermissions("mkmjGateLog:add")
@ResponseBody
public ReturnMap add() throws Exception{
PageData pd = new PageData();
@ -56,7 +56,7 @@ public class MkmjGateLogController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/delete")
@RequiresPermissions("mkmjAreaGate:del")
@RequiresPermissions("mkmjGateLog:del")
@ResponseBody
public ReturnMap delete() throws Exception{
PageData pd = new PageData();
@ -69,7 +69,7 @@ public class MkmjGateLogController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/edit")
@RequiresPermissions("mkmjAreaGate:edit")
@RequiresPermissions("mkmjGateLog:edit")
@ResponseBody
public ReturnMap edit() throws Exception{
PageData pd = new PageData();
@ -84,7 +84,7 @@ public class MkmjGateLogController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/list")
@RequiresPermissions("mkmjAreaGate:list")
@RequiresPermissions("mkmjGateLog:list")
@ResponseBody
public Object list(Page page) throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -106,7 +106,7 @@ public class MkmjGateLogController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/goEdit")
@RequiresPermissions("mkmjAreaGate:edit")
@RequiresPermissions("mkmjGateLog:edit")
@ResponseBody
public Object goEdit() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();