|
|
@@ -1,6 +1,7 @@
|
|
|
package com.xunmei.system.controller;
|
|
|
|
|
|
import java.util.List;
|
|
|
+
|
|
|
import com.xunmei.system.api.domain.SysArea;
|
|
|
import com.xunmei.system.domain.SysAreaCheck;
|
|
|
import com.xunmei.system.service.ISysAreaCheckService;
|
|
|
@@ -52,6 +53,15 @@ public class SysNfcBindController extends BaseController {
|
|
|
return sysNfcBindService.selectPage(sysNfcBind);
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 获取【请填写功能名称】详细信息
|
|
|
+ */
|
|
|
+ @ApiOperation(value = "获取SysNfcBind详细信息")
|
|
|
+ @RequiresPermissions("system:bind:query")
|
|
|
+ @GetMapping(value = {"/appGetInfo", "/{code}"})
|
|
|
+ public AjaxResult appGetInfo(@PathVariable(value = "code", required = false) String code) {
|
|
|
+ return success(sysNfcBindService.selectSysNfcBindByCode(code));
|
|
|
+ }
|
|
|
|
|
|
/**
|
|
|
* 获取【请填写功能名称】详细信息
|
|
|
@@ -106,4 +116,15 @@ public class SysNfcBindController extends BaseController {
|
|
|
public AjaxResult remove(@PathVariable Long[] ids) {
|
|
|
return toAjax(sysNfcBindService.deleteSysNfcBindByIds(ids));
|
|
|
}
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 解绑【请填写功能名称】
|
|
|
+ */
|
|
|
+ @ApiOperation(value = "解绑")
|
|
|
+ @RequiresPermissions("system:bind:remove")
|
|
|
+ @Log(title = "【请填写功能名称】", businessType = BusinessType.DELETE)
|
|
|
+ @DeleteMapping("/unbinding/{code}")
|
|
|
+ public AjaxResult unbinding(@PathVariable String code) {
|
|
|
+ return toAjax(sysNfcBindService.deleteSysNfcBindByCode(code));
|
|
|
+ }
|
|
|
}
|