
com.denghb.eorm.support.model.Trace Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eorm-spring Show documentation
Show all versions of eorm-spring Show documentation
A easy based on the Spring JdbcTemplate JDBC ORM
package com.denghb.eorm.support.model;
/**
* @author denghb
* @since 2019-07-13 23:07
*/
public class Trace {
private String id;
private long startTime;
private StackTraceElement stackTraceElement;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public long getStartTime() {
return startTime;
}
public void setStartTime(long startTime) {
this.startTime = startTime;
}
public StackTraceElement getStackTraceElement() {
return stackTraceElement;
}
public void setStackTraceElement(StackTraceElement stackTraceElement) {
this.stackTraceElement = stackTraceElement;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy