| | |
| | | package com.ruoyi.system.api.domain.poji.sys; |
| | | |
| | | import java.util.Date; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.ruoyi.common.core.annotation.Excel; |
| | | import com.ruoyi.common.core.annotation.Excel.ColumnType; |
| | | import com.ruoyi.common.core.web.domain.BaseEntity; |
| | | |
| | | import java.util.Arrays; |
| | | import java.util.Date; |
| | | import java.util.StringJoiner; |
| | | |
| | | /** |
| | | * 操作日志记录表 oper_log |
| | |
| | | /** 消耗时间 */ |
| | | @Excel(name = "消耗时间", suffix = "毫秒") |
| | | private Long costTime; |
| | | |
| | | @Excel(name = "操作内容") |
| | | private String operContent; |
| | | |
| | | public Long getOperId() |
| | | { |
| | |
| | | this.operParam = operParam; |
| | | } |
| | | |
| | | |
| | | public String getJsonResult() |
| | | { |
| | | return jsonResult; |
| | |
| | | { |
| | | this.costTime = costTime; |
| | | } |
| | | |
| | | public String getOperContent() { |
| | | return operContent; |
| | | } |
| | | |
| | | public void setOperContent(String operContent) { |
| | | this.operContent = operContent; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return new StringJoiner(", ", SysOperLog.class.getSimpleName() + "[", "]") |
| | | .add("operId=" + operId) |
| | | .add("title='" + title + "'") |
| | | .add("businessType=" + businessType) |
| | | .add("businessTypes=" + Arrays.toString(businessTypes)) |
| | | .add("method='" + method + "'") |
| | | .add("requestMethod='" + requestMethod + "'") |
| | | .add("operatorType=" + operatorType) |
| | | .add("operName='" + operName + "'") |
| | | .add("deptName='" + deptName + "'") |
| | | .add("operUrl='" + operUrl + "'") |
| | | .add("operIp='" + operIp + "'") |
| | | .add("operParam='" + operParam + "'") |
| | | .add("jsonResult='" + jsonResult + "'") |
| | | .add("status=" + status) |
| | | .add("errorMsg='" + errorMsg + "'") |
| | | .add("operTime=" + operTime) |
| | | .add("costTime=" + costTime) |
| | | .add("operContent='" + operContent + "'") |
| | | .toString(); |
| | | } |
| | | } |