123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183 |
- package com.sooka.system.service;
- import java.util.List;
- import com.sooka.system.domain.TUInterfaceinfo;
- import org.apache.ibatis.annotations.Param;
- /**
- * 【接口应用审批管理】Service接口
- *
- * @author lei
- * @date 2021-07-01
- */
- public interface ITUInterfaceinfoService
- {
- /**
- * 查询【接口应用审批管理】
- *
- * @param id 【接口应用审批管理】ID
- * @return 【接口应用审批管理】
- */
- public TUInterfaceinfo selectTUInterfaceinfoById(String id);
- /**
- * 查询【接口应用审批管理】列表
- *
- * @param tUInterfaceinfo 【接口应用审批管理】
- * @return 【接口应用审批管理】集合
- */
- public List<TUInterfaceinfo> selectTUInterfaceinfoList(TUInterfaceinfo tUInterfaceinfo);
- /**
- * 根据接口IDS获取接口LIST
- * */
- public List<TUInterfaceinfo> selectTUInterfaceinfoList(String[] ids);
- /**
- * 根据数据应用IDS获取数据应用LIST
- * */
- public List<TUInterfaceinfo> selectTUInterfaceDataList(String[] ids);
- /**
- * 新增【接口应用审批管理】
- *
- * @param tUInterfaceinfo 【接口应用审批管理】
- * @return 结果
- */
- public int insertTUInterfaceinfo(TUInterfaceinfo tUInterfaceinfo);
- /**
- * 修改【接口应用审批管理】
- *
- * @param tUInterfaceinfo 【接口应用审批管理】
- * @return 结果
- */
- public int updateTUInterfaceinfo(TUInterfaceinfo tUInterfaceinfo);
- /**
- * 批量删除【接口应用审批管理】
- *
- * @param ids 需要删除的数据ID
- * @return 结果
- */
- public int deleteTUInterfaceinfoByIds(String ids);
- /**
- * 删除【接口应用审批管理】信息
- *
- * @param id 【接口应用审批管理】ID
- * @return 结果
- */
- public int deleteTUInterfaceinfoById(String id);
- /**
- * 查询接口数量
- * @return 结果
- */
- public List<TUInterfaceinfo> getCount();
- /**
- * 查询接口占比
- * @return 结果
- */
- public List<TUInterfaceinfo> getPercent(String year);
- /**
- * 查询接口占比
- * @return 结果
- */
- public List<TUInterfaceinfo> getSubPercent(String deptId, String year);
- /**
- * 接口审批分析
- * @return 结果
- */
- public TUInterfaceinfo getSubJkspfx(String deptId, String year);
- /**
- * 审批分析
- * @return 结果
- */
- public TUInterfaceinfo getSubSpfx(String deptId, String year);
- /**
- * 查询省接口调用频次TOP5
- * @return 结果
- */
- public List<TUInterfaceinfo> getProvinceTop5Frequency();
- /**
- * 查询市接口调用频次TOP5
- * @return 结果
- */
- public List<TUInterfaceinfo> getCityTop5Frequency();
- /**
- * 查询省接口调用频次TOP20
- * @return 结果
- */
- public List<TUInterfaceinfo> getProvinceTop20Frequency();
- /**
- * 查询市接口调用频次TOP20
- * @return 结果
- */
- public List<TUInterfaceinfo> getCityTop20Frequency();
- /**
- * 查询归集接口排名
- * @return 结果
- */
- public List<TUInterfaceinfo> getImputationInterfaceRanking();
- /**
- * 查询归集数据排名
- * @return 结果
- */
- public List<TUInterfaceinfo> getImputationDataRanking();
- /**
- * 查询故障接口数量
- * @return 结果
- * */
- public Integer getInterfaceCount(String status);
- /**
- * 根据部门ID查询分类数量
- * @return 结果
- * */
- public TUInterfaceinfo getShareCountByDeptId(String deptId);
- public Long getGuijiCountByDeptId(String deptId);
- /**
- * 接口调用频次
- * @return 结果
- * */
- public int callFrequency();
- /**
- * 接口归集频次
- * @return 结果
- * */
- public int pushFrequency();
- /**
- * 接口共享频次
- * @return 结果
- * */
- public int pullFrequency();
- /**
- * 查询接口日志台账
- * @return 结果
- */
- public List<TUInterfaceinfo> interfaceLogList(TUInterfaceinfo interfaceinfo);
- /**
- * 查询共享应用分析
- * @return 结果
- */
- public List<TUInterfaceinfo> getCallNumByDept(Long deptId);
- }
|