📄 homeotherbean.java
字号:
package com.shop.biz;
import java.util.List;
import java.util.Vector;
import com.shop.dao.common.IndexDAO;
import com.shop.data.AbractProduct;
import com.shop.interfaces.IHomeOther;
public class HomeOtherBean implements IHomeOther {
private IndexDAO indexdao;
public void setIndexdao(IndexDAO indexdao) {
this.indexdao = indexdao;
}
public List<AbractProduct> listHotAttentionBetween(String start,String end,int num) {
// TODO Auto-generated method stub
return indexdao.listHotAttentionBetween(start, end, num);
}
public List<AbractProduct> listHotProductBetween(String start,String end,int num) {
// TODO Auto-generated method stub
return indexdao.listHotProductBetween(start, end, num);
}
public Vector<AbractProduct> listNewProduct(int num) {
// TODO Auto-generated method stub
return indexdao.ListNewProduct(num);
}
public Vector<AbractProduct> listPromotionProduct(int num) {
// TODO Auto-generated method stub
return indexdao.ListPromotionProduct(num);
}
public Vector<AbractProduct> listRecommendProduct(int num) {
// TODO Auto-generated method stub
return indexdao.ListRecommendProduct(num);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -