ソースを参照

日志操作新旧数据变动记录表

HXC 4 年 前
コミット
d6ecb8d41c

+ 236 - 0
module-toutiao/src/main/java/cn/com/ctop/toutiao/modules/operation/controller/BytedanceOperationLogController.java

@@ -0,0 +1,236 @@
+package cn.com.ctop.toutiao.modules.operation.controller;
+
+import java.util.Arrays;
+import java.util.List;
+import java.util.Map;
+import java.io.IOException;
+import java.io.UnsupportedEncodingException;
+import java.net.URLDecoder;
+import javax.servlet.http.HttpServletRequest;
+import javax.servlet.http.HttpServletResponse;
+import org.jeecg.common.api.vo.Result;
+import cn.com.ctop.common.module.utils.QueryGenerator;
+import org.jeecg.common.util.oConvertUtils;
+import cn.com.ctop.toutiao.modules.operation.entity.BytedanceOperationLog;
+import cn.com.ctop.toutiao.modules.operation.service.IBytedanceOperationLogService;
+import java.util.Date;
+import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
+import com.baomidou.mybatisplus.core.metadata.IPage;
+import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
+import lombok.extern.slf4j.Slf4j;
+
+import org.jeecgframework.poi.excel.ExcelImportUtil;
+import org.jeecgframework.poi.excel.def.NormalExcelConstants;
+import org.jeecgframework.poi.excel.entity.ExportParams;
+import org.jeecgframework.poi.excel.entity.ImportParams;
+import org.jeecgframework.poi.excel.view.JeecgEntityExcelView;
+
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.web.bind.annotation.*;
+import org.springframework.web.multipart.MultipartFile;
+import org.springframework.web.multipart.MultipartHttpServletRequest;
+import org.springframework.web.servlet.ModelAndView;
+import com.alibaba.fastjson.JSON;
+import io.swagger.annotations.Api;
+import io.swagger.annotations.ApiOperation;
+
+ /**
+ * 操作日志
+ * @author jeecg-boot
+ * @date   2021-06-17
+ * @version V1.0
+ */
+@Slf4j
+@Api(tags="操作日志")
+@RestController
+@RequestMapping("/operation/bytedanceOperationLog")
+public class BytedanceOperationLogController {
+	@Autowired
+	private IBytedanceOperationLogService bytedanceOperationLogService;
+
+	/**
+	  * 分页列表查询
+	 * @param bytedanceOperationLog
+	 * @param pageNo
+	 * @param pageSize
+	 * @param req
+	 * @return
+	 */
+	@ApiOperation(value="操作日志-分页列表查询", notes="操作日志-分页列表查询")
+	@GetMapping(value = "/list")
+	public Result<IPage<BytedanceOperationLog>> queryPageList(BytedanceOperationLog bytedanceOperationLog,
+									  @RequestParam(name="pageNo", defaultValue="1") Integer pageNo,
+									  @RequestParam(name="pageSize", defaultValue="10") Integer pageSize,
+									  HttpServletRequest req) {
+		Result<IPage<BytedanceOperationLog>> result = new Result<>();
+		QueryWrapper<BytedanceOperationLog> queryWrapper = QueryGenerator.initQueryWrapper(bytedanceOperationLog, req.getParameterMap());
+		Page<BytedanceOperationLog> page = new Page<BytedanceOperationLog>(pageNo, pageSize);
+		IPage<BytedanceOperationLog> pageList = bytedanceOperationLogService.page(page, queryWrapper);
+		result.setSuccess(true);
+		result.setResult(pageList);
+		return result;
+	}
+
+	/**
+	  *   添加
+	 * @param bytedanceOperationLog
+	 * @return
+	 */
+	@ApiOperation(value="操作日志-添加", notes="操作日志-添加")
+	@PostMapping(value = "/add")
+	public Result<BytedanceOperationLog> add(@RequestBody BytedanceOperationLog bytedanceOperationLog) {
+		Result<BytedanceOperationLog> result = new Result<>();
+		try {
+			bytedanceOperationLogService.save(bytedanceOperationLog);
+			result.success("添加成功!");
+		} catch (Exception e) {
+			log.error(e.getMessage(),e);
+			result.error500("操作失败");
+		}
+		return result;
+	}
+
+	/**
+	  *  编辑
+	 * @param bytedanceOperationLog
+	 * @return
+	 */
+	@ApiOperation(value="操作日志-编辑", notes="操作日志-编辑")
+	@PutMapping(value = "/edit")
+	public Result<BytedanceOperationLog> edit(@RequestBody BytedanceOperationLog bytedanceOperationLog) {
+		Result<BytedanceOperationLog> result = new Result<BytedanceOperationLog>();
+		BytedanceOperationLog bytedanceOperationLogEntity = bytedanceOperationLogService.getById(bytedanceOperationLog.getId());
+		if(bytedanceOperationLogEntity==null) {
+			result.error500("未找到对应实体");
+		}else {
+			boolean ok = bytedanceOperationLogService.updateById(bytedanceOperationLog);
+			if(ok) {
+				result.success("修改成功!");
+			}
+		}
+
+		return result;
+	}
+
+	/**
+	  *   通过id删除
+	 * @param id
+	 * @return
+	 */
+	@ApiOperation(value="操作日志-通过id删除", notes="操作日志-通过id删除")
+	@DeleteMapping(value = "/delete")
+	public Result<?> delete(@RequestParam(name="id") String id) {
+		try {
+			bytedanceOperationLogService.removeById(id);
+		} catch (Exception e) {
+			log.error("删除失败",e.getMessage());
+			return Result.error("删除失败!");
+		}
+		return Result.ok("删除成功!");
+	}
+
+	/**
+	 *  批量删除
+	 * @param ids
+	 * @return
+	 */
+	@ApiOperation(value="操作日志-批量删除", notes="操作日志-批量删除")
+	@DeleteMapping(value = "/deleteBatch")
+	public Result<BytedanceOperationLog> deleteBatch(@RequestParam(name="ids") String ids) {
+		Result<BytedanceOperationLog> result = new Result<>();
+		if(ids==null || "".equals(ids.trim())) {
+			result.error500("参数不识别!");
+		}else {
+			this.bytedanceOperationLogService.removeByIds(Arrays.asList(ids.split(",")));
+			result.success("删除成功!");
+		}
+		return result;
+	}
+
+	/**
+	  * 通过id查询
+	 * @param id
+	 * @return
+	 */
+	@ApiOperation(value="操作日志-通过id查询", notes="操作日志-通过id查询")
+	@GetMapping(value = "/queryById")
+	public Result<BytedanceOperationLog> queryById(@RequestParam(name="id",required=true) String id) {
+		Result<BytedanceOperationLog> result = new Result<>();
+		BytedanceOperationLog bytedanceOperationLog = bytedanceOperationLogService.getById(id);
+		if(bytedanceOperationLog==null) {
+			result.error500("未找到对应实体");
+		}else {
+			result.setResult(bytedanceOperationLog);
+			result.setSuccess(true);
+		}
+		return result;
+	}
+
+  /**
+      * 导出excel
+   *
+   * @param request
+   * @param response
+   */
+  @RequestMapping(value = "/exportXls")
+  public ModelAndView exportXls(HttpServletRequest request, HttpServletResponse response) {
+      // Step.1 组装查询条件
+      QueryWrapper<BytedanceOperationLog> queryWrapper = null;
+      try {
+          String paramsStr = request.getParameter("paramsStr");
+          if (oConvertUtils.isNotEmpty(paramsStr)) {
+              String deString = URLDecoder.decode(paramsStr, "UTF-8");
+              BytedanceOperationLog bytedanceOperationLog = JSON.parseObject(deString, BytedanceOperationLog.class);
+              queryWrapper = QueryGenerator.initQueryWrapper(bytedanceOperationLog, request.getParameterMap());
+          }
+      } catch (UnsupportedEncodingException e) {
+          e.printStackTrace();
+      }
+
+      //Step.2 AutoPoi 导出Excel
+      ModelAndView mv = new ModelAndView(new JeecgEntityExcelView());
+      List<BytedanceOperationLog> pageList = bytedanceOperationLogService.list(queryWrapper);
+      //导出文件名称
+      mv.addObject(NormalExcelConstants.FILE_NAME, "操作日志列表");
+      mv.addObject(NormalExcelConstants.CLASS, BytedanceOperationLog.class);
+      mv.addObject(NormalExcelConstants.PARAMS, new ExportParams("操作日志列表数据", "导出人:Jeecg", "导出信息"));
+      mv.addObject(NormalExcelConstants.DATA_LIST, pageList);
+      return mv;
+  }
+
+  /**
+      * 通过excel导入数据
+   *
+   * @param request
+   * @param response
+   * @return
+   */
+  @RequestMapping(value = "/importExcel", method = RequestMethod.POST)
+  public Result<?> importExcel(HttpServletRequest request, HttpServletResponse response) {
+      MultipartHttpServletRequest multipartRequest = (MultipartHttpServletRequest) request;
+      Map<String, MultipartFile> fileMap = multipartRequest.getFileMap();
+      for (Map.Entry<String, MultipartFile> entity : fileMap.entrySet()) {
+          MultipartFile file = entity.getValue();
+          ImportParams params = new ImportParams();
+          params.setTitleRows(2);
+          params.setHeadRows(1);
+          params.setNeedSave(true);
+          try {
+              List<BytedanceOperationLog> listBytedanceOperationLogs = ExcelImportUtil.importExcel(file.getInputStream(), BytedanceOperationLog.class, params);
+              bytedanceOperationLogService.saveBatch(listBytedanceOperationLogs);
+              return Result.ok("文件导入成功!数据行数:" + listBytedanceOperationLogs.size());
+          } catch (Exception e) {
+              log.error(e.getMessage(),e);
+              return Result.error("文件导入失败:"+e.getMessage());
+          } finally {
+              try {
+                  file.getInputStream().close();
+              } catch (IOException e) {
+                  e.printStackTrace();
+              }
+          }
+      }
+      return Result.ok("文件导入失败!");
+  }
+
+}

+ 61 - 0
module-toutiao/src/main/java/cn/com/ctop/toutiao/modules/operation/entity/BytedanceOperationLog.java

@@ -0,0 +1,61 @@
+package cn.com.ctop.toutiao.modules.operation.entity;
+
+import java.io.Serializable;
+import java.util.Date;
+import com.baomidou.mybatisplus.annotation.IdType;
+import com.baomidou.mybatisplus.annotation.TableId;
+import com.baomidou.mybatisplus.annotation.TableName;
+import com.baomidou.mybatisplus.annotation.TableField;
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+import lombok.experimental.Accessors;
+import com.fasterxml.jackson.annotation.JsonFormat;
+import org.springframework.format.annotation.DateTimeFormat;
+import org.jeecgframework.poi.excel.annotation.Excel;
+
+/**
+ * 操作日志
+ * @author jeecg-boot
+ * @date   2021-06-17
+ * @version V1.0
+ */
+@Data
+@TableName("ctop_bytedance_operation_log")
+@EqualsAndHashCode(callSuper = false)
+@Accessors(chain = true)
+@ApiModel(value="ctop_bytedance_operation_log对象", description="操作日志")
+public class BytedanceOperationLog {
+    
+	/**id*/
+	@TableId(type = IdType.UUID)
+    @ApiModelProperty(value = "id")
+	private Integer id;
+	/**原始数据*/
+	@Excel(name = "原始数据", width = 15)
+    @ApiModelProperty(value = "原始数据")
+	private Object oldData;
+	/**修改后的数据*/
+	@Excel(name = "修改后的数据", width = 15)
+    @ApiModelProperty(value = "修改后的数据")
+	private Object newData;
+	/**操作类型*/
+	@Excel(name = "操作类型", width = 15)
+    @ApiModelProperty(value = "操作类型")
+	private String operationType;
+	/**操作内容*/
+	@Excel(name = "操作内容", width = 15)
+    @ApiModelProperty(value = "操作内容")
+	private Object operationContent;
+	/**创建人id*/
+	@Excel(name = "创建人id", width = 15)
+    @ApiModelProperty(value = "创建人id")
+	private String createById;
+	/**创建时间*/
+	@Excel(name = "创建时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
+	@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
+    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
+    @ApiModelProperty(value = "创建时间")
+	private Date createTime;
+}

+ 17 - 0
module-toutiao/src/main/java/cn/com/ctop/toutiao/modules/operation/mapper/BytedanceOperationLogMapper.java

@@ -0,0 +1,17 @@
+package cn.com.ctop.toutiao.modules.operation.mapper;
+
+import java.util.List;
+
+import cn.com.ctop.toutiao.modules.operation.entity.BytedanceOperationLog;
+import org.apache.ibatis.annotations.Param;
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+
+/**
+ * 操作日志
+ * @author jeecg-boot
+ * 2021-06-17
+ * @version V1.0
+ */
+public interface BytedanceOperationLogMapper extends BaseMapper<BytedanceOperationLog> {
+
+}

+ 5 - 0
module-toutiao/src/main/java/cn/com/ctop/toutiao/modules/operation/mapper/xml/BytedanceOperationLogMapper.xml

@@ -0,0 +1,5 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="cn.com.ctop.operation.mapper.BytedanceOperationLogMapper">
+
+</mapper>

+ 14 - 0
module-toutiao/src/main/java/cn/com/ctop/toutiao/modules/operation/service/IBytedanceOperationLogService.java

@@ -0,0 +1,14 @@
+package cn.com.ctop.toutiao.modules.operation.service;
+
+import cn.com.ctop.toutiao.modules.operation.entity.BytedanceOperationLog;
+import com.baomidou.mybatisplus.extension.service.IService;
+
+/**
+ * 操作日志
+ * @author jeecg-boot
+ * 2021-06-17
+ * @version V1.0
+ */
+public interface IBytedanceOperationLogService extends IService<BytedanceOperationLog> {
+
+}

+ 19 - 0
module-toutiao/src/main/java/cn/com/ctop/toutiao/modules/operation/service/impl/BytedanceOperationLogServiceImpl.java

@@ -0,0 +1,19 @@
+package cn.com.ctop.toutiao.modules.operation.service.impl;
+
+import cn.com.ctop.toutiao.modules.operation.mapper.BytedanceOperationLogMapper;
+import cn.com.ctop.toutiao.modules.operation.service.IBytedanceOperationLogService;
+import cn.com.ctop.toutiao.modules.operation.entity.BytedanceOperationLog;
+import org.springframework.stereotype.Service;
+
+import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
+
+/**
+ * 操作日志
+ * @author jeecg-boot
+ * 2021-06-17
+ * @version V1.0
+ */
+@Service
+public class BytedanceOperationLogServiceImpl extends ServiceImpl<BytedanceOperationLogMapper, BytedanceOperationLog> implements IBytedanceOperationLogService {
+
+}