354798ggg
2023-07-24 9a261c1c166bf9ad0ac5cd8f04a0a6dd0ae1408f
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
package com.product.module.data.service.idel;
 
import com.product.core.entity.DataTableEntity;
import com.product.core.exception.BaseException;
 
/**
 * @ClassName IOrganizationImportService
 * @Description 组织机构导入数据处理
 * @Author cheng
 * @Date 2021/12/2 16:09
 */
public interface IOrganizationImportService {
    /**
     * 导入公司 之前 数据处理
     *
     * @param fse
     * @throws BaseException
     */
    DataTableEntity importCompanyBefore(DataTableEntity fse) throws BaseException;
 
    /**
     * 导入部门 之前 数据处理
     *
     * @param fse
     * @throws BaseException
     */
    DataTableEntity importDeptBefore(DataTableEntity fse) throws BaseException;
 
    /**
     * 导入岗位等级 之前 数据处理
     *
     * @param fse
     * @throws BaseException
     */
    DataTableEntity importPostLevelBefore(DataTableEntity fse) throws BaseException;
 
    /**
     * 导入岗位 之前 数据处理
     *
     * @param fse
     * @throws BaseException
     */
    DataTableEntity importPostBefore(DataTableEntity fse) throws BaseException;
 
    /**
     * 导入员工 之前 数据处理
     *
     * @param fse
     * @throws BaseException
     */
    DataTableEntity importStaffBefore(DataTableEntity fse) throws BaseException;
 
}