shichongfu
2023-04-25 ce0b49552668d3331055e2b1a1447a743dc54939
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
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: IStaffManagerService
* @Date:  2020-06-16 09:46   
* @Author: 杜洪波
* @Description:员工管理
 */
public interface IStaffManagerService {
    
    /**
     * 员工新增
     * @param fse
     * @return
     * @throws BaseException
     */
    public String addStaffInfo(FieldSetEntity fse)throws BaseException,Exception;
 
 
    /**
     * 员工新增 v2
     * @param fse
     * @return
     * @throws BaseException
     */
    String saveStaffInfo(FieldSetEntity fse)throws BaseException,Exception;
 
 
    /**
     * 员工修改 v2
     * @param fse
     * @return
     * @throws BaseException
     */
    public boolean updateStaffInfoV2(FieldSetEntity fse)throws BaseException;
    
    /**
     * 员工修改
     * @param fse
     * @return
     * @throws BaseException
     */
    public boolean updateStaffInfo(FieldSetEntity fse)throws BaseException;
 
    /**
     * 员工删除 v2
     * @param uuid
     * @return
     * @throws BaseException
     */
    public boolean deleteStaffInfoV2(String uuid)throws BaseException;
 
 
    /**
     * 员工删除
     * @param uuid
     * @return
     * @throws BaseException
     */
    public boolean deleteStaffInfo(String uuid)throws BaseException;
    
    /**
     * 员工个人信息
     * @param fse
     * @return
     * @throws BaseException
     */
    public boolean staffPersonalAndAddress(FieldSetEntity fse)throws BaseException;
    
    /**
     * 员工就业信息
     * @param fse
     * @return
     * @throws BaseException
     */
    public boolean staffEmploymentInfo(FieldSetEntity fse)throws BaseException;
    
    /**
     * 员工银行账户信息
     * @param fse
     * @return
     * @throws BaseException
     */
    public boolean staffBankInfo(FieldSetEntity fse)throws BaseException;
    
    /**
     * 员工紧急联系人信息
     * @return
     * @throws BaseException
     */
    public boolean staffEmergencyContactInfo(FieldSetEntity fse)throws BaseException;
    
    /**
     * 员工属性组修改
     * @param fse
     * @return
     * @throws BaseException
     */
    public boolean updateStaffProperty(FieldSetEntity fse) throws BaseException;
    
    /**
     * 修改头像
     * @param fse
     * @return
     * @throws BaseException
     */
    public boolean uploadStaffavatar(FieldSetEntity fse) throws BaseException;
}