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

2cache.j2cache-mybatis.2.5.3-release.source-code.Blog Maven / Gradle / Ivy

There is a newer version: 2.8.0-release
Show newest version
import java.io.Serializable;

/**
 * 测试 Entity
 */
public class Blog implements Serializable {

    private int id;
    private String title;
    private String body;

    public int getId() {
        return id;
    }

    public void setId(int id) {
        this.id = id;
    }

    public String getTitle() {
        return title;
    }

    public void setTitle(String title) {
        this.title = title;
    }

    public String getBody() {
        return body;
    }

    public void setBody(String body) {
        this.body = body;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy