item.java
来自「用java实现一个功能完善的投票系统」· Java 代码 · 共 33 行
JAVA
33 行
package com.wxpn.tutorial.servlet;
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 String getOptions() {
return options;
}
public void setOptions(String options) {
this.options = options;
}
public int getQid() {
return qid;
}
public void setQid(int qid) {
this.qid = qid;
}
public int getVote() {
return vote;
}
public void setVote(int vote) {
this.vote = vote;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?