|
@@ -0,0 +1,86 @@
|
|
|
+/*
|
|
|
+ * Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
|
|
|
+ *
|
|
|
+ * Redistribution and use in source and binary forms, with or without
|
|
|
+ * modification, are permitted provided that the following conditions are met:
|
|
|
+ *
|
|
|
+ * Redistributions of source code must retain the above copyright notice,
|
|
|
+ * this list of conditions and the following disclaimer.
|
|
|
+ * Redistributions in binary form must reproduce the above copyright
|
|
|
+ * notice, this list of conditions and the following disclaimer in the
|
|
|
+ * documentation and/or other materials provided with the distribution.
|
|
|
+ * Neither the name of the dreamlu.net developer nor the names of its
|
|
|
+ * contributors may be used to endorse or promote products derived from
|
|
|
+ * this software without specific prior written permission.
|
|
|
+ * Author: Chill 庄骞 (smallchill@163.com)
|
|
|
+ */
|
|
|
+package org.springblade.business.controller;
|
|
|
+
|
|
|
+import io.swagger.annotations.Api;
|
|
|
+import io.swagger.annotations.ApiOperation;
|
|
|
+import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport;
|
|
|
+import lombok.AllArgsConstructor;
|
|
|
+
|
|
|
+import org.springblade.business.wrapper.OperationLogWrapper;
|
|
|
+import org.springblade.core.mp.support.Condition;
|
|
|
+import org.springblade.core.mp.support.Query;
|
|
|
+import org.springblade.core.secure.utils.AuthUtil;
|
|
|
+import org.springblade.core.tool.api.R;
|
|
|
+import org.springblade.system.entity.DictBiz;
|
|
|
+import org.springblade.system.feign.IDictBizClient;
|
|
|
+import org.springframework.web.bind.annotation.*;
|
|
|
+import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
|
+import org.springblade.business.entity.OperationLog;
|
|
|
+import org.springblade.business.vo.OperationLogVO;
|
|
|
+import org.springblade.business.service.IOperationLogService;
|
|
|
+import org.springblade.core.boot.ctrl.BladeController;
|
|
|
+
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 控制器
|
|
|
+ *
|
|
|
+ * @author BladeX
|
|
|
+ * @since 2022-07-14
|
|
|
+ */
|
|
|
+@RestController
|
|
|
+@AllArgsConstructor
|
|
|
+@RequestMapping("/operationLog")
|
|
|
+@Api(value = "操作日志", tags = "操作日志")
|
|
|
+public class OperationLogController extends BladeController {
|
|
|
+
|
|
|
+ private final IOperationLogService operationLogService;
|
|
|
+
|
|
|
+ private final IDictBizClient dictBizClient;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 分页
|
|
|
+ */
|
|
|
+ @GetMapping("/list")
|
|
|
+ @ApiOperationSupport(order = 1)
|
|
|
+ @ApiOperation(value = "分页", notes = "传入operationLog")
|
|
|
+ public R<IPage<OperationLogVO>> list(OperationLog operationLog, Query query) {
|
|
|
+
|
|
|
+ operationLog.setCreateUser(AuthUtil.getUserId());
|
|
|
+ IPage<OperationLog> pages = operationLogService.page(Condition.getPage(query), Condition.getQueryWrapper(operationLog));
|
|
|
+
|
|
|
+ //获取业务字典
|
|
|
+ List<DictBiz> dictBizList = this.dictBizClient.getList("operation_type", "notRoot").getData();
|
|
|
+
|
|
|
+ IPage<OperationLogVO> voiPage = OperationLogWrapper.build().pageVO(pages);
|
|
|
+ List<OperationLogVO> resultVo = voiPage.getRecords();
|
|
|
+ resultVo.forEach(vo -> {
|
|
|
+ for(DictBiz biz : dictBizList){
|
|
|
+ if(vo.getOperationType() != null && vo.getOperationType().toString().equals(biz.getDictKey())){
|
|
|
+ vo.setOperationTypeValue(biz.getDictValue());
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ });
|
|
|
+ voiPage.setRecords(resultVo);
|
|
|
+
|
|
|
+ return R.data(voiPage);
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+}
|