| | |
| | | public interface ForbiddenUserIdentifyCodeService {
|
| | |
|
| | | /**
|
| | | * 添加禁止标识
|
| | | * 封禁账号
|
| | | *
|
| | | * @param identifyCode
|
| | | * @throws ForbiddenUserIdentifyCodeException
|
| | | */
|
| | | public void addIdentifyCode(ForbiddenUserIdentifyCode identifyCode) throws ForbiddenUserIdentifyCodeException;
|
| | | public void forbiddenIdentifyCode(ForbiddenUserIdentifyCode identifyCode) throws ForbiddenUserIdentifyCodeException;
|
| | |
|
| | | /**
|
| | | * 通过类型与唯一标识获取列表
|
| | |
| | | */
|
| | | public void delete(ForbiddenUserIdentifyCode identifyCode);
|
| | |
|
| | | /**
|
| | | * 对账号封禁、解封操作
|
| | | * @param identifyCode 号码
|
| | | * @param type 类型 |
| | | * @param state 状态: true 封
|
| | | * @throws ForbiddenUserIdentifyCodeException
|
| | | */
|
| | | public void saveForbiddenInfo(String identifyCode, Integer type) throws ForbiddenUserIdentifyCodeException;
|
| | |
|
| | | }
|