📄 indexstatserviceimpl.java
字号:
package com.srit.gcz.service.impl;
import java.util.List;
import com.srit.gcz.bean.IndexDim;
import com.srit.gcz.bean.IndexFrequency;
import com.srit.gcz.bean.IndexStat;
import com.srit.gcz.bean.IndexStatRel;
import com.srit.gcz.dao.IndexStatDao;
import com.srit.gcz.service.IndexStatService;
/**
* 统计属性
* @Company 国研科技
* @author 陈鹏昊
* @date 2009-3-24
* @version 1.0
* @since 1.0
*/
public class IndexStatServiceImpl implements IndexStatService{
// Spring注入
private IndexStatDao indexStatDao;
public List<IndexStat> getIndexStats() {
return indexStatDao.getIndexStats();
}
public List<IndexStat> getIndexStatsByIndexID(int ID) {
return indexStatDao.getIndexStatsByIndexID(ID);
}
public List<IndexStat> getIntersectionStats(String IDs){
return indexStatDao.getIndexStatsByIndexIDs(IDs);
}
public void setIndexStatDao(IndexStatDao indexStatDao) {
this.indexStatDao = indexStatDao;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -