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.
weaver-hrm-organization/src/com/engine/organization/service/ResourceBasicInfoService.java

74 lines
1.4 KiB
Java

package com.engine.organization.service;
import com.api.browser.bean.SearchConditionGroup;
import com.engine.organization.entity.fieldset.vo.TypeTreeVO;
import com.engine.organization.entity.hrmresource.po.ResourceItemPO;
import java.util.Collection;
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();
/**
*
* @param params
* @return
*/
List<SearchConditionGroup> getForm(Map<String, Object> params);
/**
* /
* @param ids
* @return
*/
int deletByIds(Collection<Long> ids);
/**
*
* @param ids
* @return
*/
int recoverByIds(Collection<Long> ids);
/**
*
* @param resourceItemPO
* @return
*/
int save(ResourceItemPO resourceItemPO);
/**
* id
* @param fid
* @return
*/
ResourceItemPO selectById(Integer fid);
/**
*
* @param resourceItemPO
* @return
*/
int update(ResourceItemPO resourceItemPO);
}