Commit 72330b787fc6e3c11def0c788f9cd2756d7b2495
1 parent
5bb800d2
fix: delete config
Showing
1 changed file
with
6 additions
and
6 deletions
ruoyi-admin/src/main/java/com/ruoyi/in/controller/SignInController.java
| ... | ... | @@ -37,7 +37,7 @@ public class SignInController extends BaseController |
| 37 | 37 | /** |
| 38 | 38 | * 查询签到列表 |
| 39 | 39 | */ |
| 40 | - @PreAuthorize("@ss.hasPermi('in:in:list')") | |
| 40 | +// @PreAuthorize("@ss.hasPermi('in:in:list')") | |
| 41 | 41 | @GetMapping("/list") |
| 42 | 42 | public TableDataInfo list(SignIn signIn) |
| 43 | 43 | { |
| ... | ... | @@ -49,7 +49,7 @@ public class SignInController extends BaseController |
| 49 | 49 | /** |
| 50 | 50 | * 导出签到列表 |
| 51 | 51 | */ |
| 52 | - @PreAuthorize("@ss.hasPermi('in:in:export')") | |
| 52 | +// @PreAuthorize("@ss.hasPermi('in:in:export')") | |
| 53 | 53 | @Log(title = "签到", businessType = BusinessType.EXPORT) |
| 54 | 54 | @PostMapping("/export") |
| 55 | 55 | public void export(HttpServletResponse response, SignIn signIn) |
| ... | ... | @@ -62,7 +62,7 @@ public class SignInController extends BaseController |
| 62 | 62 | /** |
| 63 | 63 | * 获取签到详细信息 |
| 64 | 64 | */ |
| 65 | - @PreAuthorize("@ss.hasPermi('in:in:query')") | |
| 65 | +// @PreAuthorize("@ss.hasPermi('in:in:query')") | |
| 66 | 66 | @GetMapping(value = "/{id}") |
| 67 | 67 | public AjaxResult getInfo(@PathVariable("id") Long id) |
| 68 | 68 | { |
| ... | ... | @@ -72,7 +72,7 @@ public class SignInController extends BaseController |
| 72 | 72 | /** |
| 73 | 73 | * 新增签到 |
| 74 | 74 | */ |
| 75 | - @PreAuthorize("@ss.hasPermi('in:in:add')") | |
| 75 | +// @PreAuthorize("@ss.hasPermi('in:in:add')") | |
| 76 | 76 | @Log(title = "签到", businessType = BusinessType.INSERT) |
| 77 | 77 | @PostMapping |
| 78 | 78 | public AjaxResult add(@RequestBody SignIn signIn) |
| ... | ... | @@ -83,7 +83,7 @@ public class SignInController extends BaseController |
| 83 | 83 | /** |
| 84 | 84 | * 修改签到 |
| 85 | 85 | */ |
| 86 | - @PreAuthorize("@ss.hasPermi('in:in:edit')") | |
| 86 | +// @PreAuthorize("@ss.hasPermi('in:in:edit')") | |
| 87 | 87 | @Log(title = "签到", businessType = BusinessType.UPDATE) |
| 88 | 88 | @PutMapping |
| 89 | 89 | public AjaxResult edit(@RequestBody SignIn signIn) |
| ... | ... | @@ -94,7 +94,7 @@ public class SignInController extends BaseController |
| 94 | 94 | /** |
| 95 | 95 | * 删除签到 |
| 96 | 96 | */ |
| 97 | - @PreAuthorize("@ss.hasPermi('in:in:remove')") | |
| 97 | +// @PreAuthorize("@ss.hasPermi('in:in:remove')") | |
| 98 | 98 | @Log(title = "签到", businessType = BusinessType.DELETE) |
| 99 | 99 | @DeleteMapping("/{ids}") |
| 100 | 100 | public AjaxResult remove(@PathVariable Long[] ids) | ... | ... |