📄 vote.java
字号:
package cn.vote.lucky;
public class Vote {
private int one;
private int two;
private int three;
private int four;
private int five;
public int getFive() {
return five;
}
public void setFive(int five) {
this.five = five;
}
public int getFour() {
return four;
}
public void setFour(int four) {
this.four = four;
}
public int getOne() {
return one;
}
public void setOne(int one) {
this.one = one;
}
public int getThree() {
return three;
}
public void setThree(int three) {
this.three = three;
}
public int getTwo() {
return two;
}
public void setTwo(int two) {
this.two = two;
}
/**
* @param args
*/
public static void main(String[] args) {
// TODO 自动生成方法存根
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -