votecontext.java
来自「struts2 spring2.5 hibernate3.0 eclipse投票」· Java 代码 · 共 52 行
JAVA
52 行
package sunyang.vote.domain;
@SuppressWarnings("serial")
public class Votecontext implements java.io.Serializable {
private Integer votecontextId;
private String context;
private Integer count;
private Integer voteId;
public Votecontext() {
}
public Votecontext(String context, Integer count, Integer voteId) {
this.context = context;
this.count = count;
this.voteId = voteId;
}
public Integer getVotecontextId() {
return this.votecontextId;
}
public void setVotecontextId(Integer votecontextId) {
this.votecontextId = votecontextId;
}
public String getContext() {
return this.context;
}
public void setContext(String context) {
this.context = context;
}
public Integer getCount() {
return this.count;
}
public void setCount(Integer count) {
this.count = count;
}
public Integer getVoteId() {
return this.voteId;
}
public void setVoteId(Integer voteId) {
this.voteId = voteId;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?