|
@ -15,27 +15,27 @@ public class LabelDataModel implements Serializable {
|
|
|
private String id;
|
|
|
private String createTime;//时间
|
|
|
private String code;//操作人code
|
|
|
private String classMethod;//完整的类路径
|
|
|
private String requestMapping;//web路径
|
|
|
private String operaTime;//操作时间
|
|
|
private String date;//具体的数据
|
|
|
private String data;//具体的数据
|
|
|
|
|
|
public LabelDataModel() {
|
|
|
}
|
|
|
|
|
|
public LabelDataModel(String createTime, String code, String classMethod, String operaTime, String date) {
|
|
|
public LabelDataModel(String createTime, String code, String requestMapping, String operaTime, String data) {
|
|
|
this.createTime = createTime;
|
|
|
this.code = code;
|
|
|
this.classMethod = classMethod;
|
|
|
this.requestMapping = requestMapping;
|
|
|
this.operaTime = operaTime;
|
|
|
this.date = date;
|
|
|
this.data = data;
|
|
|
}
|
|
|
|
|
|
public String getDate() {
|
|
|
return date;
|
|
|
public String getData() {
|
|
|
return data;
|
|
|
}
|
|
|
|
|
|
public void setDate(String date) {
|
|
|
this.date = date;
|
|
|
public void setData(String data) {
|
|
|
this.data = data;
|
|
|
}
|
|
|
|
|
|
public String getId() {
|
|
@ -62,12 +62,12 @@ public class LabelDataModel implements Serializable {
|
|
|
this.code = code;
|
|
|
}
|
|
|
|
|
|
public String getClassMethod() {
|
|
|
return classMethod;
|
|
|
public String getRequestMapping() {
|
|
|
return requestMapping;
|
|
|
}
|
|
|
|
|
|
public void setClassMethod(String classMethod) {
|
|
|
this.classMethod = classMethod;
|
|
|
public void setRequestMapping(String requestMapping) {
|
|
|
this.requestMapping = requestMapping;
|
|
|
}
|
|
|
|
|
|
public String getOperaTime() {
|