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.
22 lines
489 B
Java
22 lines
489 B
Java
package com.engine.thinktrans.service;
|
|
|
|
import java.util.Map;
|
|
|
|
/**
|
|
* @Author liang.cheng
|
|
* @Date 2023/11/20 3:48 PM
|
|
* @Description: 建模表数据分析存储
|
|
* @Version 1.0
|
|
*/
|
|
public interface CubeRecordDataService {
|
|
|
|
/**
|
|
* @Description: 离职率统计 uf_lzlbb
|
|
* @Author: liang.cheng
|
|
* @Date: 2023/11/20 4:11 PM
|
|
* @param: [year]
|
|
* @return: java.util.Map<java.lang.String,java.lang.Object>
|
|
*/
|
|
Map<String,Object> dimissionRate(Integer year);
|
|
}
|