1
0
Fork 0
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

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);
}