?? vote.java
字號:
package cn.hxex.vote.model;
import java.util.Set;
public class Vote {
private String id;
private String name;
private String title;
private String voteType;
private String picType;
private Set voteItems;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getPicType() {
return picType;
}
public void setPicType(String picType) {
this.picType = picType;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public Set getVoteItems() {
return voteItems;
}
public void setVoteItems(Set voteItems) {
this.voteItems = voteItems;
}
public String getVoteType() {
return voteType;
}
public void setVoteType(String voteType) {
this.voteType = voteType;
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -