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

📄 hotcategorysbean.java

📁 struts+spring+hibernate例子
💻 JAVA
字号:
package com.shop.biz;

import java.util.List;

import com.shop.dao.common.IndexDAO;
import com.shop.data.AbractCategory;
import com.shop.interfaces.IHotCategorys;

public class HotCategorysBean implements IHotCategorys {
	private IndexDAO indexdao;
	
	public void setIndexdao(IndexDAO indexdao) {
		this.indexdao = indexdao;
	}

	public List<AbractCategory> listHotCategorys() {
		// TODO Auto-generated method stub
		List<AbractCategory> hotCategorys = indexdao.ListHotCategorys(10);
		return hotCategorys;
	}

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -