All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.shixinke.utils.web.common.TraceLogId Maven / Gradle / Ivy

There is a newer version: 1.0.8
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy