实时报表-流量统计菜单下新增统计菜单,对多个业务内容进行统计及业务之间的切换,以图表和列表的方式展示
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
package com.nis.web.service.configuration.statistics;
|
||||
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import com.nis.domain.dashboard.ConfigStatistic;
|
||||
import com.nis.web.dao.dashboard.codedic.ConfigStatisticDao;
|
||||
import com.nis.web.service.BaseService;
|
||||
|
||||
@Service
|
||||
public class ConfigStatisticService extends BaseService{
|
||||
|
||||
@Autowired
|
||||
private ConfigStatisticDao configStatisticDao;
|
||||
|
||||
|
||||
public String getCfgDescByCfgId(ConfigStatistic entity){
|
||||
|
||||
String cfgDesc=configStatisticDao.getCfgDescByCfgId(entity);
|
||||
|
||||
return cfgDesc;
|
||||
}
|
||||
|
||||
public String getASNIPCfgDesc(String cfgId){
|
||||
|
||||
String cfgDesc=configStatisticDao.getASNIPCfgDesc(cfgId);
|
||||
|
||||
return cfgDesc;
|
||||
}
|
||||
|
||||
public String getAPPIPCfgDesc(String cfgId){
|
||||
|
||||
String cfgDesc=configStatisticDao.getAPPIPCfgDesc(cfgId);
|
||||
|
||||
return cfgDesc;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user