门口门禁处理
parent
7a721799b7
commit
332f52244c
|
@ -27,7 +27,7 @@ import java.util.Map;
|
||||||
* 官网:www.zcloudchina.com
|
* 官网:www.zcloudchina.com
|
||||||
*/
|
*/
|
||||||
@Controller
|
@Controller
|
||||||
@RequestMapping("/mkmjAreaGate")
|
@RequestMapping("/mkmjGateLog")
|
||||||
public class MkmjGateLogController extends BaseController {
|
public class MkmjGateLogController extends BaseController {
|
||||||
|
|
||||||
@Autowired
|
@Autowired
|
||||||
|
@ -38,7 +38,7 @@ public class MkmjGateLogController extends BaseController {
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
@RequestMapping(value="/add")
|
@RequestMapping(value="/add")
|
||||||
@RequiresPermissions("mkmjAreaGate:add")
|
@RequiresPermissions("mkmjGateLog:add")
|
||||||
@ResponseBody
|
@ResponseBody
|
||||||
public ReturnMap add() throws Exception{
|
public ReturnMap add() throws Exception{
|
||||||
PageData pd = new PageData();
|
PageData pd = new PageData();
|
||||||
|
@ -56,7 +56,7 @@ public class MkmjGateLogController extends BaseController {
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
@RequestMapping(value="/delete")
|
@RequestMapping(value="/delete")
|
||||||
@RequiresPermissions("mkmjAreaGate:del")
|
@RequiresPermissions("mkmjGateLog:del")
|
||||||
@ResponseBody
|
@ResponseBody
|
||||||
public ReturnMap delete() throws Exception{
|
public ReturnMap delete() throws Exception{
|
||||||
PageData pd = new PageData();
|
PageData pd = new PageData();
|
||||||
|
@ -69,7 +69,7 @@ public class MkmjGateLogController extends BaseController {
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
@RequestMapping(value="/edit")
|
@RequestMapping(value="/edit")
|
||||||
@RequiresPermissions("mkmjAreaGate:edit")
|
@RequiresPermissions("mkmjGateLog:edit")
|
||||||
@ResponseBody
|
@ResponseBody
|
||||||
public ReturnMap edit() throws Exception{
|
public ReturnMap edit() throws Exception{
|
||||||
PageData pd = new PageData();
|
PageData pd = new PageData();
|
||||||
|
@ -84,7 +84,7 @@ public class MkmjGateLogController extends BaseController {
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
@RequestMapping(value="/list")
|
@RequestMapping(value="/list")
|
||||||
@RequiresPermissions("mkmjAreaGate:list")
|
@RequiresPermissions("mkmjGateLog:list")
|
||||||
@ResponseBody
|
@ResponseBody
|
||||||
public Object list(Page page) throws Exception{
|
public Object list(Page page) throws Exception{
|
||||||
Map<String,Object> map = new HashMap<String,Object>();
|
Map<String,Object> map = new HashMap<String,Object>();
|
||||||
|
@ -106,7 +106,7 @@ public class MkmjGateLogController extends BaseController {
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
@RequestMapping(value="/goEdit")
|
@RequestMapping(value="/goEdit")
|
||||||
@RequiresPermissions("mkmjAreaGate:edit")
|
@RequiresPermissions("mkmjGateLog:edit")
|
||||||
@ResponseBody
|
@ResponseBody
|
||||||
public Object goEdit() throws Exception{
|
public Object goEdit() throws Exception{
|
||||||
Map<String,Object> map = new HashMap<String,Object>();
|
Map<String,Object> map = new HashMap<String,Object>();
|
||||||
|
|
Loading…
Reference in New Issue