Java Code Examples for com.ruoyi.common.enums.BusinessType#CLEAN
The following examples show how to use
com.ruoyi.common.enums.BusinessType#CLEAN .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: SysOperlogController.java From supplierShop with MIT License | 5 votes |
@Log(title = "操作日志", businessType = BusinessType.CLEAN) @RequiresPermissions("monitor:operlog:remove") @PostMapping("/clean") @ResponseBody public AjaxResult clean() { operLogService.cleanOperLog(); return success(); }
Example 2
Source File: SysLogininforController.java From supplierShop with MIT License | 5 votes |
@RequiresPermissions("monitor:logininfor:remove") @Log(title = "登陆日志", businessType = BusinessType.CLEAN) @PostMapping("/clean") @ResponseBody public AjaxResult clean() { logininforService.cleanLogininfor(); return success(); }
Example 3
Source File: SysJobLogController.java From supplierShop with MIT License | 5 votes |
@Log(title = "调度日志", businessType = BusinessType.CLEAN) @RequiresPermissions("monitor:job:remove") @PostMapping("/clean") @ResponseBody public AjaxResult clean() { jobLogService.cleanJobLog(); return success(); }
Example 4
Source File: SysJobLogController.java From ruoyiplus with MIT License | 5 votes |
@Log(title = "调度日志", businessType = BusinessType.CLEAN) @RequiresPermissions("monitor:job:remove") @PostMapping("/clean") @ResponseBody public AjaxResult clean() { jobLogService.cleanJobLog(); return success(); }
Example 5
Source File: SysOperlogController.java From ruoyiplus with MIT License | 5 votes |
@Log(title = "操作日志", businessType = BusinessType.CLEAN) @RequiresPermissions("monitor:operlog:remove") @PostMapping("/clean") @ResponseBody public AjaxResult clean() { operLogService.cleanOperLog(); return success(); }
Example 6
Source File: SysLogininforController.java From ruoyiplus with MIT License | 5 votes |
@RequiresPermissions("monitor:logininfor:remove") @Log(title = "登陆日志", businessType = BusinessType.CLEAN) @PostMapping("/clean") @ResponseBody public AjaxResult clean() { logininforService.cleanLogininfor(); return success(); }
Example 7
Source File: SysJobLogController.java From RuoYi with Apache License 2.0 | 5 votes |
@Log(title = "调度日志", businessType = BusinessType.CLEAN) @RequiresPermissions("monitor:job:remove") @PostMapping("/clean") @ResponseBody public AjaxResult clean() { jobLogService.cleanJobLog(); return success(); }
Example 8
Source File: SysOperlogController.java From RuoYi with Apache License 2.0 | 5 votes |
@Log(title = "操作日志", businessType = BusinessType.CLEAN) @RequiresPermissions("monitor:operlog:remove") @PostMapping("/clean") @ResponseBody public AjaxResult clean() { operLogService.cleanOperLog(); return success(); }
Example 9
Source File: SysLogininforController.java From RuoYi with Apache License 2.0 | 5 votes |
@RequiresPermissions("monitor:logininfor:remove") @Log(title = "登陆日志", businessType = BusinessType.CLEAN) @PostMapping("/clean") @ResponseBody public AjaxResult clean() { logininforService.cleanLogininfor(); return success(); }