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;
|
}
|