2cache.j2cache-mybatis.2.5.2-release.source-code.Blog Maven / Gradle / Ivy
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;
}
}