You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
325 B
20 lines
325 B
package com.zc.business.service;
|
|
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
/**
|
|
* 模块调用统计Service
|
|
*/
|
|
public interface ModuleCallService {
|
|
|
|
/**
|
|
* 查询模块调用统计
|
|
*/
|
|
List<Map<String, Object>> selectModuleCall();
|
|
|
|
/**
|
|
* 基础数据统计
|
|
*/
|
|
int selectBasicData();
|
|
}
|
|
|