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/SchemeService.java

90 lines
1.6 KiB
Java

package com.engine.organization.service;
import com.engine.organization.entity.fieldset.vo.TypeTreeVO;
import com.engine.organization.entity.scheme.param.SchemeSearchParam;
import java.util.Collection;
import java.util.List;
import java.util.Map;
/**
* @Author dxfeng
3 years ago
* @description:
* @Date 2022/5/9
* @Version V1.0
**/
public interface SchemeService {
/**
*
*
* @param params
* @return
*/
Map<String, Object> listPage(Map<String, Object> params);
/**
*
*
* @param param
* @return
*/
int save(SchemeSearchParam param);
/**
*
*
* @param param
* @return
*/
int updateScheme(SchemeSearchParam param);
/**
*
*
* @param params
* @return
*/
int updateForbiddenTagById(SchemeSearchParam params);
/**
* ID
*
* @param ids
* @return
*/
int deleteByIds(Collection<Long> ids);
/**
*
*
* @param params
* @return
*/
Map<String, Object> getSearchCondition(Map<String, Object> params);
/**
*
*
* @param params
* @return
*/
Map<String, Object> getSchemeForm(Map<String, Object> params);
/**
*
*
* @return
*/
Map<String, Object> getTableBtn();
/**
*
*
* @return
*/
List<TypeTreeVO> getTreeData();
}