forked from chenwei/weaver-matfron
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.
16 lines
274 B
Java
16 lines
274 B
Java
1 year ago
|
package com.engine.mingfeng.service;
|
||
|
|
||
|
import java.util.Map;
|
||
|
|
||
|
/**
|
||
|
* @author chenwnj
|
||
|
* @date 2023/11/6
|
||
|
* @description
|
||
|
**/
|
||
|
public interface PerformanService {
|
||
|
/**
|
||
|
* 获取绩效信息
|
||
|
*/
|
||
|
Map<String, Object> getPerformanInfo(Map<String, Object> params);
|
||
|
}
|