📄 sectionsecondandthird.java
字号:
package tarena.data;
import java.util.List;
public class SectionSecondAndThird {
/** 二级板块 */
private AbractSection secondCategory;
/** 二级板块下的所有三级板块 */
private List<AbractSection> thirdCategorys;
public SectionSecondAndThird() {
super();
}
public SectionSecondAndThird(AbractSection secondCategory,
List<AbractSection> thirdCategorys) {
super();
this.secondCategory = secondCategory;
this.thirdCategorys = thirdCategorys;
}
public AbractSection getSecondCategory() {
return secondCategory;
}
public void setSecondCategory(AbractSection secondCategory) {
this.secondCategory = secondCategory;
}
public List<AbractSection> getThirdCategorys() {
return thirdCategorys;
}
public void setThirdCategorys(List<AbractSection> thirdCategorys) {
this.thirdCategorys = thirdCategorys;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -