123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- package com.sooka.system.service;
- import java.util.List;
- import java.util.Map;
- import com.sooka.system.domain.TULog;
- /**
- * 接口调用日志Service接口
- *
- * @author lei
- * @date 2021-07-06
- */
- public interface ITULogService
- {
- /**
- * 查询接口调用日志
- *
- * @param id 接口调用日志ID
- * @return 接口调用日志
- */
- public TULog selectTULogById(String id);
- /**
- * 查询接口调用日志列表
- *
- * @param tULog 接口调用日志
- * @return 接口调用日志集合
- */
- public List<TULog> selectTULogList(TULog tULog);
- /**
- * 新增接口调用日志
- *
- * @param tULog 接口调用日志
- * @return 结果
- */
- public int insertTULog(TULog tULog);
- /**
- * 修改接口调用日志
- *
- * @param tULog 接口调用日志
- * @return 结果
- */
- public int updateTULog(TULog tULog);
- /**
- * 批量删除接口调用日志
- *
- * @param ids 需要删除的数据ID
- * @return 结果
- */
- public int deleteTULogByIds(String ids);
- /**
- * 删除接口调用日志信息
- *
- * @param id 接口调用日志ID
- * @return 结果
- */
- public int deleteTULogById(String id);
- /**
- * 查询数据总量
- * @return 结果
- */
- public Long getLogCount();
- /**
- * 查询日志表中的归集量
- * @return 结果
- */
- public Map selectImputationLog(String year);
- }
|