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

top.wboost.common.log.entity.BaseLog Maven / Gradle / Ivy

package top.wboost.common.log.entity;

import java.io.Serializable;

/**
 * 基础日志
 * @className BaseLog
 * @author jwSun
 * @date 2017年7月4日 下午5:53:26
 * @version 1.0.0
 */
public class BaseLog implements Serializable {

    private static final long serialVersionUID = -5239387078477718207L;

    private String log;

    public String getLog() {
        return log;
    }

    public void setLog(String log) {
        this.log = log;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy