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.
21 lines
388 B
Java
21 lines
388 B
Java
1 year ago
|
package com.engine.sship.service;
|
||
|
|
||
|
|
||
|
import com.engine.sship.entity.ChartChildrensVO;
|
||
|
|
||
|
/**
|
||
|
* @author apple
|
||
|
*/
|
||
|
public interface OrgChartService {
|
||
|
|
||
|
|
||
|
/**
|
||
|
* @Description: 集团组织人员图
|
||
|
* @Author: liang.cheng
|
||
|
* @Date: 2024/1/3 10:07 AM
|
||
|
* @param: []
|
||
|
* @return: com.engine.sship.entity.ChartChildrensVO
|
||
|
*/
|
||
|
ChartChildrensVO selectResourceChart();
|
||
|
}
|