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
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: ISystemOrgLevelsService
 * @Date: 2020-09-19 18:02
 * @Author: 杜洪波
 * @Description:
 */
public interface ISystemOrgLevelsService {
    /**
     * 新增公司
     * @param fse
     * @return
     * @throws BaseException
     */
    String addCompany(FieldSetEntity fse) throws BaseException;
 
    /**
     * 新增部门
     * @param fse
     * @return
     * @throws BaseException
     */
    String addDepartment(FieldSetEntity fse) throws BaseException;
 
    /**
     * 修改公司
     *
     * @param fseNew
     * @return
     * @throws BaseException
     */
    boolean updateCompany(FieldSetEntity fseNew) throws BaseException;
 
    /**
     * 删除公司
     *
     * @param fse
     * @return
     * @throws BaseException
     */
    boolean deleteCompany(FieldSetEntity fse) throws BaseException;
 
    /**
     * 修改部门
     * @param fse
     * @return
     * @throws BaseException
     */
    boolean updateDepartment(FieldSetEntity fse) throws BaseException;
}