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: IDimissionHandoverService
|
* @Date: 2020-11-30 18:23
|
* @Author: 杜洪波
|
* @Description:
|
*/
|
public interface IDimissionHandoverService {
|
|
/**
|
* 离职交接修改
|
* @param fse
|
* @throws BaseException
|
*/
|
boolean updateHandover(FieldSetEntity fse)throws BaseException;
|
|
/**
|
* 离职交接删除
|
* @param fse
|
* @throws BaseException
|
*/
|
boolean delectHandover(FieldSetEntity fse)throws BaseException;
|
}
|