📄 hotbrandbean.java
字号:
package com.shop.biz;
import java.util.List;
import com.shop.dao.common.IndexDAO;
import com.shop.data.AbractBrand;
import com.shop.interfaces.IHotBrand;
public class HotBrandBean implements IHotBrand {
private IndexDAO indexdao;
public void setIndexdao(IndexDAO indexdao) {
this.indexdao = indexdao;
}
public List<AbractBrand> ListHotBrand() {
// TODO Auto-generated method stub
List<AbractBrand> hotBrand = indexdao.ListHotBrand(10);
return hotBrand;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -