|
@@ -0,0 +1,67 @@
|
|
|
+package com.zhongzheng.controller.monitor;
|
|
|
+
|
|
|
+import com.zhongzheng.common.annotation.Log;
|
|
|
+import com.zhongzheng.common.core.controller.BaseController;
|
|
|
+import com.zhongzheng.common.core.domain.AjaxResult;
|
|
|
+import com.zhongzheng.common.core.page.TableDataInfo;
|
|
|
+import com.zhongzheng.common.enums.BusinessType;
|
|
|
+import com.zhongzheng.common.utils.poi.ExcelUtil;
|
|
|
+import com.zhongzheng.modules.system.domain.SysOperLog;
|
|
|
+import com.zhongzheng.modules.system.service.ISysOperLogService;
|
|
|
+import io.swagger.annotations.Api;
|
|
|
+import io.swagger.annotations.ApiOperation;
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.security.access.prepost.PreAuthorize;
|
|
|
+import org.springframework.web.bind.annotation.*;
|
|
|
+
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 操作日志记录
|
|
|
+ *
|
|
|
+ * @author zhongzheng
|
|
|
+ */
|
|
|
+@Api(tags ="操作日志记录")
|
|
|
+@RestController
|
|
|
+@RequestMapping("/monitor/operlog")
|
|
|
+public class SysOperlogController extends BaseController
|
|
|
+{
|
|
|
+ @Autowired
|
|
|
+ private ISysOperLogService operLogService;
|
|
|
+
|
|
|
+ @ApiOperation("操作日志分页列表")
|
|
|
+ @PreAuthorize("@ss.hasPermi('monitor:operlog:list')")
|
|
|
+ @GetMapping("/list")
|
|
|
+ public TableDataInfo list(SysOperLog operLog)
|
|
|
+ {
|
|
|
+ startPage();
|
|
|
+ List<SysOperLog> list = operLogService.selectOperLogList(operLog);
|
|
|
+ return getDataTable(list);
|
|
|
+ }
|
|
|
+
|
|
|
+ @Log(title = "操作日志", businessType = BusinessType.EXPORT)
|
|
|
+ @PreAuthorize("@ss.hasPermi('monitor:operlog:export')")
|
|
|
+ @GetMapping("/export")
|
|
|
+ public AjaxResult export(SysOperLog operLog)
|
|
|
+ {
|
|
|
+ List<SysOperLog> list = operLogService.selectOperLogList(operLog);
|
|
|
+ ExcelUtil<SysOperLog> util = new ExcelUtil<SysOperLog>(SysOperLog.class);
|
|
|
+ return util.exportExcel(list, "操作日志");
|
|
|
+ }
|
|
|
+
|
|
|
+ @PreAuthorize("@ss.hasPermi('monitor:operlog:remove')")
|
|
|
+ @DeleteMapping("/{operIds}")
|
|
|
+ public AjaxResult remove(@PathVariable Long[] operIds)
|
|
|
+ {
|
|
|
+ return toAjax(operLogService.deleteOperLogByIds(operIds));
|
|
|
+ }
|
|
|
+
|
|
|
+ @Log(title = "操作日志", businessType = BusinessType.CLEAN)
|
|
|
+ @PreAuthorize("@ss.hasPermi('monitor:operlog:remove')")
|
|
|
+ @DeleteMapping("/clean")
|
|
|
+ public AjaxResult clean()
|
|
|
+ {
|
|
|
+ operLogService.cleanOperLog();
|
|
|
+ return AjaxResult.success();
|
|
|
+ }
|
|
|
+}
|