poll.java
来自「该项目为网上书店」· Java 代码 · 共 36 行
JAVA
36 行
package org.myrose.beans;
public class Poll {
private int id;
private String optionName;
private int poll;
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getOptionName() {
return optionName;
}
public void setOptionName(String optionName) {
this.optionName = optionName;
}
public int getPoll() {
return poll;
}
public void setPoll(int poll) {
this.poll = poll;
}
public Poll() {
super();
// TODO Auto-generated constructor stub
}
public Poll(int id, String optionName, int poll) {
super();
this.id = id;
this.optionName = optionName;
this.poll = poll;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?