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
473 B
Java
21 lines
473 B
Java
11 months ago
|
package com.engine.jhsecond.service.impl;
|
||
|
|
||
|
import com.engine.core.impl.Service;
|
||
|
import com.engine.jhsecond.service.OrganizationChartService;
|
||
|
|
||
|
import java.util.Map;
|
||
|
|
||
|
/**
|
||
|
* @Author liang.cheng
|
||
|
* @Date 2024/7/16 5:17 PM
|
||
|
* @Description: TODO
|
||
|
* @Version 1.0
|
||
|
*/
|
||
|
public class OrganizationChartServiceImpl extends Service implements OrganizationChartService {
|
||
|
|
||
|
@Override
|
||
|
public Map<String, Object> selectData(Map<String, Object> params) {
|
||
|
return null;
|
||
|
}
|
||
|
}
|