📄 votecontext.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -