From a6fb88d74c20cc28043d75e8a5097fce49cf9a78 Mon Sep 17 00:00:00 2001 From: 疯狂的狮子li <15040126243@163.com> Date: 星期五, 15 十月 2021 15:19:42 +0800 Subject: [PATCH] update [重大更新]全业务 增加 接口文档注解 格式化代码 --- ruoyi-system/src/main/java/com/ruoyi/system/domain/SysOperLog.java | 330 ++++++++++++++++++++----------------------------------- 1 files changed, 120 insertions(+), 210 deletions(-) diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/domain/SysOperLog.java b/ruoyi-system/src/main/java/com/ruoyi/system/domain/SysOperLog.java index 175ee03..84ab555 100644 --- a/ruoyi-system/src/main/java/com/ruoyi/system/domain/SysOperLog.java +++ b/ruoyi-system/src/main/java/com/ruoyi/system/domain/SysOperLog.java @@ -1,255 +1,165 @@ package com.ruoyi.system.domain; +import com.alibaba.excel.annotation.ExcelIgnoreUnannotated; +import com.alibaba.excel.annotation.ExcelProperty; +import com.baomidou.mybatisplus.annotation.TableField; +import com.baomidou.mybatisplus.annotation.TableId; +import com.baomidou.mybatisplus.annotation.TableName; +import com.ruoyi.common.annotation.ExcelDictFormat; +import com.ruoyi.common.convert.ExcelDictConvert; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; +import lombok.experimental.Accessors; + +import java.io.Serializable; import java.util.Date; -import com.fasterxml.jackson.annotation.JsonFormat; -import com.ruoyi.common.annotation.Excel; -import com.ruoyi.common.annotation.Excel.ColumnType; -import com.ruoyi.common.core.domain.BaseEntity; +import java.util.HashMap; +import java.util.Map; /** * 鎿嶄綔鏃ュ織璁板綍琛� oper_log - * - * @author ruoyi + * + * @author Lion Li */ -public class SysOperLog extends BaseEntity -{ + +@Data +@Accessors(chain = true) +@TableName("sys_oper_log") +@ExcelIgnoreUnannotated +@ApiModel("鎿嶄綔鏃ュ織璁板綍涓氬姟瀵硅薄") +public class SysOperLog implements Serializable { + private static final long serialVersionUID = 1L; - /** 鏃ュ織涓婚敭 */ - @Excel(name = "鎿嶄綔搴忓彿", cellType = ColumnType.NUMERIC) + /** + * 鏃ュ織涓婚敭 + */ + @ApiModelProperty(value = "鏃ュ織涓婚敭") + @ExcelProperty(value = "鏃ュ織涓婚敭") + @TableId(value = "oper_id") private Long operId; - /** 鎿嶄綔妯″潡 */ - @Excel(name = "鎿嶄綔妯″潡") + /** + * 鎿嶄綔妯″潡 + */ + @ApiModelProperty(value = "鎿嶄綔妯″潡") + @ExcelProperty(value = "鎿嶄綔妯″潡") private String title; - /** 涓氬姟绫诲瀷锛�0鍏跺畠 1鏂板 2淇敼 3鍒犻櫎锛� */ - @Excel(name = "涓氬姟绫诲瀷", readConverterExp = "0=鍏跺畠,1=鏂板,2=淇敼,3=鍒犻櫎,4=鎺堟潈,5=瀵煎嚭,6=瀵煎叆,7=寮洪��,8=鐢熸垚浠g爜,9=娓呯┖鏁版嵁") + /** + * 涓氬姟绫诲瀷锛�0鍏跺畠 1鏂板 2淇敼 3鍒犻櫎锛� + */ + @ApiModelProperty(value = "涓氬姟绫诲瀷锛�0鍏跺畠 1鏂板 2淇敼 3鍒犻櫎锛�") + @ExcelProperty(value = "涓氬姟绫诲瀷", converter = ExcelDictConvert.class) + @ExcelDictFormat(dictType = "sys_oper_type") private Integer businessType; - /** 涓氬姟绫诲瀷鏁扮粍 */ + /** + * 涓氬姟绫诲瀷鏁扮粍 + */ + @ApiModelProperty(value = "涓氬姟绫诲瀷鏁扮粍") + @TableField(exist = false) private Integer[] businessTypes; - /** 璇锋眰鏂规硶 */ - @Excel(name = "璇锋眰鏂规硶") + /** + * 璇锋眰鏂规硶 + */ + @ApiModelProperty(value = "璇锋眰鏂规硶") + @ExcelProperty(value = "璇锋眰鏂规硶") private String method; - /** 璇锋眰鏂瑰紡 */ - @Excel(name = "璇锋眰鏂瑰紡") + /** + * 璇锋眰鏂瑰紡 + */ + @ApiModelProperty(value = "璇锋眰鏂瑰紡") + @ExcelProperty(value = "璇锋眰鏂瑰紡") private String requestMethod; - /** 鎿嶄綔绫诲埆锛�0鍏跺畠 1鍚庡彴鐢ㄦ埛 2鎵嬫満绔敤鎴凤級 */ - @Excel(name = "鎿嶄綔绫诲埆", readConverterExp = "0=鍏跺畠,1=鍚庡彴鐢ㄦ埛,2=鎵嬫満绔敤鎴�") + /** + * 鎿嶄綔绫诲埆锛�0鍏跺畠 1鍚庡彴鐢ㄦ埛 2鎵嬫満绔敤鎴凤級 + */ + @ApiModelProperty(value = "鎿嶄綔绫诲埆锛�0鍏跺畠 1鍚庡彴鐢ㄦ埛 2鎵嬫満绔敤鎴凤級") + @ExcelProperty(value = "鎿嶄綔绫诲埆", converter = ExcelDictConvert.class) + @ExcelDictFormat(readConverterExp = "0=鍏跺畠,1=鍚庡彴鐢ㄦ埛,2=鎵嬫満绔敤鎴�") private Integer operatorType; - /** 鎿嶄綔浜哄憳 */ - @Excel(name = "鎿嶄綔浜哄憳") + /** + * 鎿嶄綔浜哄憳 + */ + @ApiModelProperty(value = "鎿嶄綔浜哄憳") + @ExcelProperty(value = "鎿嶄綔浜哄憳") private String operName; - /** 閮ㄩ棬鍚嶇О */ - @Excel(name = "閮ㄩ棬鍚嶇О") + /** + * 閮ㄩ棬鍚嶇О + */ + @ApiModelProperty(value = "閮ㄩ棬鍚嶇О") + @ExcelProperty(value = "閮ㄩ棬鍚嶇О") private String deptName; - /** 璇锋眰url */ - @Excel(name = "璇锋眰鍦板潃") + /** + * 璇锋眰url + */ + @ApiModelProperty(value = "璇锋眰url") + @ExcelProperty(value = "璇锋眰鍦板潃") private String operUrl; - /** 鎿嶄綔鍦板潃 */ - @Excel(name = "鎿嶄綔鍦板潃") + /** + * 鎿嶄綔鍦板潃 + */ + @ApiModelProperty(value = "鎿嶄綔鍦板潃") + @ExcelProperty(value = "鎿嶄綔鍦板潃") private String operIp; - /** 鎿嶄綔鍦扮偣 */ - @Excel(name = "鎿嶄綔鍦扮偣") + /** + * 鎿嶄綔鍦扮偣 + */ + @ApiModelProperty(value = "鎿嶄綔鍦扮偣") + @ExcelProperty(value = "鎿嶄綔鍦扮偣") private String operLocation; - /** 璇锋眰鍙傛暟 */ - @Excel(name = "璇锋眰鍙傛暟") + /** + * 璇锋眰鍙傛暟 + */ + @ApiModelProperty(value = "璇锋眰鍙傛暟") + @ExcelProperty(value = "璇锋眰鍙傛暟") private String operParam; - /** 杩斿洖鍙傛暟 */ - @Excel(name = "杩斿洖鍙傛暟") + /** + * 杩斿洖鍙傛暟 + */ + @ApiModelProperty(value = "杩斿洖鍙傛暟") + @ExcelProperty(value = "杩斿洖鍙傛暟") private String jsonResult; - /** 鎿嶄綔鐘舵�侊紙0姝e父 1寮傚父锛� */ - @Excel(name = "鐘舵��", readConverterExp = "0=姝e父,1=寮傚父") + /** + * 鎿嶄綔鐘舵�侊紙0姝e父 1寮傚父锛� + */ + @ApiModelProperty(value = "鎿嶄綔鐘舵�侊紙0姝e父 1寮傚父锛�") + @ExcelProperty(value = "鐘舵��", converter = ExcelDictConvert.class) + @ExcelDictFormat(dictType = "sys_common_status") private Integer status; - /** 閿欒娑堟伅 */ - @Excel(name = "閿欒娑堟伅") + /** + * 閿欒娑堟伅 + */ + @ApiModelProperty(value = "閿欒娑堟伅") + @ExcelProperty(value = "閿欒娑堟伅") private String errorMsg; - /** 鎿嶄綔鏃堕棿 */ - @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") - @Excel(name = "鎿嶄綔鏃堕棿", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss") + /** + * 鎿嶄綔鏃堕棿 + */ + @ApiModelProperty(value = "鎿嶄綔鏃堕棿") + @ExcelProperty(value = "鎿嶄綔鏃堕棿") private Date operTime; - public Long getOperId() - { - return operId; - } + /** + * 璇锋眰鍙傛暟 + */ + @ApiModelProperty(value = "璇锋眰鍙傛暟") + @TableField(exist = false) + private Map<String, Object> params = new HashMap<>(); - public void setOperId(Long operId) - { - this.operId = operId; - } - - public String getTitle() - { - return title; - } - - public void setTitle(String title) - { - this.title = title; - } - - public Integer getBusinessType() - { - return businessType; - } - - public void setBusinessType(Integer businessType) - { - this.businessType = businessType; - } - - public Integer[] getBusinessTypes() - { - return businessTypes; - } - - public void setBusinessTypes(Integer[] businessTypes) - { - this.businessTypes = businessTypes; - } - - public String getMethod() - { - return method; - } - - public void setMethod(String method) - { - this.method = method; - } - - public String getRequestMethod() - { - return requestMethod; - } - - public void setRequestMethod(String requestMethod) - { - this.requestMethod = requestMethod; - } - - public Integer getOperatorType() - { - return operatorType; - } - - public void setOperatorType(Integer operatorType) - { - this.operatorType = operatorType; - } - - public String getOperName() - { - return operName; - } - - public void setOperName(String operName) - { - this.operName = operName; - } - - public String getDeptName() - { - return deptName; - } - - public void setDeptName(String deptName) - { - this.deptName = deptName; - } - - public String getOperUrl() - { - return operUrl; - } - - public void setOperUrl(String operUrl) - { - this.operUrl = operUrl; - } - - public String getOperIp() - { - return operIp; - } - - public void setOperIp(String operIp) - { - this.operIp = operIp; - } - - public String getOperLocation() - { - return operLocation; - } - - public void setOperLocation(String operLocation) - { - this.operLocation = operLocation; - } - - public String getOperParam() - { - return operParam; - } - - public void setOperParam(String operParam) - { - this.operParam = operParam; - } - - public String getJsonResult() - { - return jsonResult; - } - - public void setJsonResult(String jsonResult) - { - this.jsonResult = jsonResult; - } - - public Integer getStatus() - { - return status; - } - - public void setStatus(Integer status) - { - this.status = status; - } - - public String getErrorMsg() - { - return errorMsg; - } - - public void setErrorMsg(String errorMsg) - { - this.errorMsg = errorMsg; - } - - public Date getOperTime() - { - return operTime; - } - - public void setOperTime(Date operTime) - { - this.operTime = operTime; - } } -- Gitblit v1.9.3