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.
24 lines
476 B
Java
24 lines
476 B
Java
3 months ago
|
package com.engine.wysecond.service;
|
||
|
|
||
|
import com.engine.wysecond.entity.PostionMatrixVo;
|
||
|
|
||
|
import java.util.Map;
|
||
|
|
||
|
/**
|
||
|
* @Author liang.cheng
|
||
|
* @Date 2025/2/26 10:03
|
||
|
* @Description:
|
||
|
* @Version 1.0
|
||
|
*/
|
||
|
public interface PostionMatrixService {
|
||
|
|
||
|
/**
|
||
|
* @Description: 岗位矩阵图
|
||
|
* @Author: liang.cheng
|
||
|
* @Date: 2025/2/26 10:09
|
||
|
* @param: []
|
||
|
* @return: java.util.Map<java.lang.String,java.lang.Object>
|
||
|
*/
|
||
|
PostionMatrixVo postionMatrix();
|
||
|
}
|