weaver-hrm-organization/src/com/engine/organization/service/ResourceBasicInfoService.java

29 lines
500 B
Java
Raw Normal View History

2022-08-23 17:51:20 +08:00
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();
}