votebean.java
来自「教你一天学会struts」· Java 代码 · 共 40 行
JAVA
40 行
package com.soft136.strutsoneday.model;
public class VoteBean {
private int voteId;
private String name;
private int sum;
public VoteBean(int voteId, String name, int sum) {
super();
this.voteId = voteId;
this.name = name;
this.sum = sum;
}
public int getVoteId() {
return voteId;
}
public void setVoteId(int voteId) {
this.voteId = voteId;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getSum() {
return sum;
}
public void setSum(int sum) {
this.sum = sum;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?