|
@@ -1,13 +1,26 @@
|
|
|
package com.ozs.web.controller.monitor;
|
|
|
|
|
|
+import java.net.UnknownHostException;
|
|
|
import java.util.List;
|
|
|
+import java.util.stream.Collectors;
|
|
|
import javax.servlet.http.HttpServletResponse;
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
|
|
+import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
|
+import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
|
+import com.ozs.base.domain.BasePolicy;
|
|
|
+import com.ozs.common.utils.file.FileUtils;
|
|
|
+import com.ozs.common.vo.EsMessage;
|
|
|
+import com.ozs.system.domain.vo.requestVo.SysOperLogRequestVo;
|
|
|
+import org.apache.commons.lang3.StringUtils;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.security.access.prepost.PreAuthorize;
|
|
|
+import org.springframework.util.ObjectUtils;
|
|
|
import org.springframework.web.bind.annotation.DeleteMapping;
|
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
|
import org.springframework.web.bind.annotation.PathVariable;
|
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
|
+import org.springframework.web.bind.annotation.RequestBody;
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
import com.ozs.common.annotation.Log;
|
|
@@ -31,13 +44,34 @@ public class SysOperlogController extends BaseController
|
|
|
@Autowired
|
|
|
private ISysOperLogService operLogService;
|
|
|
|
|
|
+// @PreAuthorize("@ss.hasPermi('monitor:operlog:list')")
|
|
|
+// @GetMapping("/list")
|
|
|
+// public TableDataInfo list(SysOperLog operLog)
|
|
|
+// {
|
|
|
+// startPage();
|
|
|
+// List<SysOperLog> list = operLogService.selectOperLogList(operLog);
|
|
|
+// return getDataTable(list);
|
|
|
+// }
|
|
|
+
|
|
|
@PreAuthorize("@ss.hasPermi('monitor:operlog:list')")
|
|
|
- @GetMapping("/list")
|
|
|
- public TableDataInfo list(SysOperLog operLog)
|
|
|
+ @PostMapping("/list")
|
|
|
+ public AjaxResult list(@RequestBody SysOperLogRequestVo vo)
|
|
|
{
|
|
|
- startPage();
|
|
|
- List<SysOperLog> list = operLogService.selectOperLogList(operLog);
|
|
|
- return getDataTable(list);
|
|
|
+ LambdaQueryWrapper<SysOperLog> lw = new LambdaQueryWrapper<>();
|
|
|
+ if(!ObjectUtils.isEmpty(vo.getStartTime())){
|
|
|
+ lw.ge(SysOperLog::getOperTime,vo.getStartTime());
|
|
|
+ }
|
|
|
+ if(!ObjectUtils.isEmpty(vo.getStartTime())){
|
|
|
+ lw.le(SysOperLog::getOperTime,vo.getEntTime());
|
|
|
+ }
|
|
|
+ if(!ObjectUtils.isEmpty(vo.getBusinessType())){
|
|
|
+ lw.ge(SysOperLog::getBusinessType,vo.getBusinessType());
|
|
|
+ }
|
|
|
+ if(!ObjectUtils.isEmpty(vo.getStatus())){
|
|
|
+ lw.ge(SysOperLog::getStatus,vo.getStatus());
|
|
|
+ }
|
|
|
+ IPage<SysOperLog> page = operLogService.page(new Page<>(vo.getPageNum(), vo.getPageSize()), lw);
|
|
|
+ return success(page);
|
|
|
}
|
|
|
|
|
|
@Log(title = "操作日志", businessType = BusinessType.EXPORT)
|