You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
478 B
Java
23 lines
478 B
Java
3 months ago
|
package com.engine.forstarsecond.service.impl;
|
||
|
|
||
|
import com.engine.core.impl.Service;
|
||
|
import com.engine.forstarsecond.service.ExamineRankingService;
|
||
|
|
||
|
import java.util.Map;
|
||
|
|
||
|
/**
|
||
|
* @Author liang.cheng
|
||
|
* @Date 2025/4/27 10:04
|
||
|
* @Description: TODO
|
||
|
* @Version 1.0
|
||
|
*/
|
||
|
public class ExamineRankingServiceImpl extends Service implements ExamineRankingService {
|
||
|
|
||
|
@Override
|
||
|
public Map<String, Object> examineRanking(Map<String, Object> params) {
|
||
|
|
||
|
|
||
|
return null;
|
||
|
}
|
||
|
}
|