xg
许鹏程
2023-05-26 2476c4f7acc1a3a9087227660e32ef42157a46b6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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;
}