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.
29 lines
500 B
Java
29 lines
500 B
Java
3 years ago
|
package com.engine.organization.service;
|
||
|
|
||
|
import com.engine.organization.entity.fieldset.vo.TypeTreeVO;
|
||
|
|
||
|
import java.util.List;
|
||
|
import java.util.Map;
|
||
|
|
||
|
/**
|
||
|
* @Author weaver_cl
|
||
|
* @Description:
|
||
|
* @Date 2022/8/23
|
||
|
* @Version V1.0
|
||
|
**/
|
||
|
public interface ResourceBasicInfoService {
|
||
|
|
||
|
/**
|
||
|
* 列表
|
||
|
* @param params
|
||
|
* @return
|
||
|
*/
|
||
|
Map<String, Object> listPage(Map<String, Object> params);
|
||
|
|
||
|
/**
|
||
|
* 获取左侧树
|
||
|
* @return
|
||
|
*/
|
||
|
List<TypeTreeVO> getTreeData();
|
||
|
}
|