许鹏程
2023-05-25 213cc37cbf0b2515a4de56cc1e01813211bad183
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
package com.product.admin.service.idel;
 
 
import com.product.core.entity.DataTableEntity;
import com.product.core.entity.FieldSetEntity;
import com.product.core.exception.BaseException;
/**
 *     接口类 实现事务层
 * @author Mr.Xu
 *
 */
public interface ISystemManagerSerivce {
    
    public DataTableEntity getManagerList(String user_uuid) throws BaseException ;
    
    public String addManager(FieldSetEntity fse) throws BaseException ;
 
    public boolean updateManager(FieldSetEntity fse) throws BaseException;
 
    
    public boolean updateManagerPwd(FieldSetEntity fse) throws BaseException ;
    
    public boolean deleteManager(FieldSetEntity fse)throws BaseException;
    
    public boolean updateManagerStatus(FieldSetEntity fse)throws BaseException;
    
    public void addHideManager(FieldSetEntity client) throws BaseException;
}