1.审计日志处理2

This commit is contained in:
cdf
2024-08-29 16:01:32 +08:00
parent 7559b94959
commit 5d28504f20

View File

@@ -76,18 +76,5 @@ public class LogInfoDTO implements Serializable {
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private LocalDateTime createTime;
public LogInfoDTO(String loginName, String userName, String ip, String operate, String operateType, Integer result, String failReason, Integer level, Integer type, String serviceName, String userIndex, LocalDateTime createTime) {
this.loginName = loginName;
this.userName = userName;
this.ip = ip;
this.operate = operate;
this.operateType = operateType;
this.result = result;
this.failReason = failReason;
this.level = level;
this.type = type;
this.serviceName = serviceName;
this.userIndex = userIndex;
this.createTime = createTime;
}
}