item.java

来自「用jsp编写的网上投票系统」· Java 代码 · 共 38 行

JAVA
38
字号
package votebean;

/**
 * @author xiaoq
 *
 */
//投票选项类
public class Item {
	private int id;
	private int qid;
	private String options;
	private int vote;
	public int getId() {
		return id;
	}
	public void setId(int id) {
		this.id = id;
	}
	public int getQid() {
		return qid;
	}
	public void setQid(int qid) {
		this.qid = qid;
	}
	public String getOptions() {
		return options;
	}
	public void setOptions(String options) {
		this.options = options;
	}
	public int getVote() {
		return vote;
	}
	public void setVote(int vote) {
		this.vote = vote;
	}
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?