package com.product.org.admin.service.idel;
|
|
import com.product.core.entity.FieldSetEntity;
|
import com.product.core.exception.BaseException;
|
|
/**
|
* 部门变更
|
* Copyright LX-BASE
|
* @Title: LX-BASE-
|
* @Project: IDeptChangeService
|
* @Date: 2020-06-05 17:50
|
* @Author: 杜洪波
|
* @Description:
|
*/
|
public interface IDeptChangeService {
|
|
/**
|
* 部门合并
|
* @param fse
|
* @return
|
* @throws BaseException
|
*/
|
public boolean deptMerge(FieldSetEntity fse) throws BaseException;
|
|
/**
|
* 部门迁移
|
* @param fse
|
* @return
|
* @throws BaseException
|
*/
|
public boolean deptMove(FieldSetEntity fse) throws BaseException;
|
|
}
|