|
@ -23,8 +23,10 @@ public class BusinessLog {
|
|
|
private String breadcrumbId;
|
|
|
private String camelContextId;
|
|
|
private String body;
|
|
|
private String bodyLength;
|
|
|
private Integer bodyLength;
|
|
|
private String fireTimeSource;
|
|
|
|
|
|
//@Indexed(name = "fireTime_1", expireAfterSeconds = 30)
|
|
|
@Indexed
|
|
|
private Date fireTime; //后期建议转成TTL
|
|
|
|
|
@ -100,11 +102,11 @@ public class BusinessLog {
|
|
|
this.fireTime = fireTime;
|
|
|
}
|
|
|
|
|
|
public String getBodyLength() {
|
|
|
public Integer getBodyLength() {
|
|
|
return bodyLength;
|
|
|
}
|
|
|
|
|
|
public void setBodyLength(String bodyLength) {
|
|
|
public void setBodyLength(Integer bodyLength) {
|
|
|
this.bodyLength = bodyLength;
|
|
|
}
|
|
|
|