⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sectionsecondandthird.java

📁 基于struts+hibernate的电子商务网站。可运行。数据库mysql
💻 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 + -