📄 theme.java
字号:
package entity;
import java.util.ArrayList;
import java.util.List;
public class Theme {
private Long typeid;
private String typestyle;
private int id;
private String name;
private List<Question> question = new ArrayList<Question>();
public Long getTypeid() {
return typeid;
}
public void setTypeid(Long typeid) {
this.typeid = typeid;
}
public String getTypestyle() {
return typestyle;
}
public void setTypestyle(String typestyle) {
this.typestyle = typestyle;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public List<Question> getQuestion() {
return question;
}
public void setQuestion(List<Question> question) {
this.question = question;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -