作者 张晓杰

删除证照管理权限

@@ -42,7 +42,7 @@ public class TblOrginfoCertificateController extends BaseController { @@ -42,7 +42,7 @@ public class TblOrginfoCertificateController extends BaseController {
42 /** 42 /**
43 * 查询单位证照表列表 43 * 查询单位证照表列表
44 */ 44 */
45 - @SaCheckPermission("compliancemanagement:orginfoCertificate:list") 45 +// @SaCheckPermission("compliancemanagement:orginfoCertificate:list")
46 @GetMapping("/list") 46 @GetMapping("/list")
47 public TableDataInfo<TblOrginfoCertificateVo> list(TblOrginfoCertificateBo bo, PageQuery pageQuery) { 47 public TableDataInfo<TblOrginfoCertificateVo> list(TblOrginfoCertificateBo bo, PageQuery pageQuery) {
48 return iTblOrginfoCertificateService.queryPageList(bo, pageQuery); 48 return iTblOrginfoCertificateService.queryPageList(bo, pageQuery);
@@ -51,7 +51,7 @@ public class TblOrginfoCertificateController extends BaseController { @@ -51,7 +51,7 @@ public class TblOrginfoCertificateController extends BaseController {
51 /** 51 /**
52 * 导出单位证照表列表 52 * 导出单位证照表列表
53 */ 53 */
54 - @SaCheckPermission("compliancemanagement:orginfoCertificate:export") 54 +// @SaCheckPermission("compliancemanagement:orginfoCertificate:export")
55 @Log(title = "单位证照表", businessType = BusinessType.EXPORT) 55 @Log(title = "单位证照表", businessType = BusinessType.EXPORT)
56 @PostMapping("/export") 56 @PostMapping("/export")
57 public void export(TblOrginfoCertificateBo bo, HttpServletResponse response) { 57 public void export(TblOrginfoCertificateBo bo, HttpServletResponse response) {
@@ -64,7 +64,7 @@ public class TblOrginfoCertificateController extends BaseController { @@ -64,7 +64,7 @@ public class TblOrginfoCertificateController extends BaseController {
64 * 64 *
65 * @param id 主键 65 * @param id 主键
66 */ 66 */
67 - @SaCheckPermission("compliancemanagement:orginfoCertificate:query") 67 +// @SaCheckPermission("compliancemanagement:orginfoCertificate:query")
68 @GetMapping("/{id}") 68 @GetMapping("/{id}")
69 public R<TblOrginfoCertificateVo> getInfo(@NotNull(message = "主键不能为空") 69 public R<TblOrginfoCertificateVo> getInfo(@NotNull(message = "主键不能为空")
70 @PathVariable Long id) { 70 @PathVariable Long id) {
@@ -74,7 +74,7 @@ public class TblOrginfoCertificateController extends BaseController { @@ -74,7 +74,7 @@ public class TblOrginfoCertificateController extends BaseController {
74 /** 74 /**
75 * 新增单位证照表 75 * 新增单位证照表
76 */ 76 */
77 - @SaCheckPermission("compliancemanagement:orginfoCertificate:add") 77 +// @SaCheckPermission("compliancemanagement:orginfoCertificate:add")
78 @Log(title = "单位证照表", businessType = BusinessType.INSERT) 78 @Log(title = "单位证照表", businessType = BusinessType.INSERT)
79 @RepeatSubmit() 79 @RepeatSubmit()
80 @PostMapping() 80 @PostMapping()
@@ -85,7 +85,7 @@ public class TblOrginfoCertificateController extends BaseController { @@ -85,7 +85,7 @@ public class TblOrginfoCertificateController extends BaseController {
85 /** 85 /**
86 * 修改单位证照表 86 * 修改单位证照表
87 */ 87 */
88 - @SaCheckPermission("compliancemanagement:orginfoCertificate:edit") 88 +// @SaCheckPermission("compliancemanagement:orginfoCertificate:edit")
89 @Log(title = "单位证照表", businessType = BusinessType.UPDATE) 89 @Log(title = "单位证照表", businessType = BusinessType.UPDATE)
90 @RepeatSubmit() 90 @RepeatSubmit()
91 @PutMapping() 91 @PutMapping()
@@ -107,7 +107,7 @@ public class TblOrginfoCertificateController extends BaseController { @@ -107,7 +107,7 @@ public class TblOrginfoCertificateController extends BaseController {
107 * 107 *
108 * @param ids 主键串 108 * @param ids 主键串
109 */ 109 */
110 - @SaCheckPermission("compliancemanagement:orginfoCertificate:remove") 110 +// @SaCheckPermission("compliancemanagement:orginfoCertificate:remove")
111 @Log(title = "单位证照表", businessType = BusinessType.DELETE) 111 @Log(title = "单位证照表", businessType = BusinessType.DELETE)
112 @DeleteMapping("/{ids}") 112 @DeleteMapping("/{ids}")
113 public R<Void> remove(@NotEmpty(message = "主键不能为空") 113 public R<Void> remove(@NotEmpty(message = "主键不能为空")