com.shixinke.utils.web.common.TraceLogId Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of web-utils Show documentation
Show all versions of web-utils Show documentation
Toolbox commonly used in web development
package com.shixinke.utils.web.common;
import lombok.Data;
/**
* 追踪日志ID
* @author shixinke
*/
@Data
public class TraceLogId {
private String ip;
private Long lastId;
private Long createTime;
public TraceLogId() {
this.ip = "";
this.lastId = 0L;
this.createTime = 0L;
}
}