22 lines
438 B
Java
22 lines
438 B
Java
package com.hivekion.statistic.service;
|
|
|
|
import com.hivekion.statistic.bean.BattleConsumeStatistic;
|
|
import com.hivekion.statistic.bean.StatisticBean;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* [类的简要说明]
|
|
* <p>
|
|
* [详细描述,可选]
|
|
* <p>
|
|
*
|
|
* @author LiDongYU
|
|
* @since 2025/7/22
|
|
*/
|
|
public interface StatisticService {
|
|
StatisticBean statistic(String resourceId);
|
|
|
|
List<BattleConsumeStatistic> listBattleConsumeStatistic();
|
|
}
|