VPN服务器
新增添加IP重复验证 删除验证是否被IP复用-用户管理使用 IP复用-用户管理 删除验证是否被snat策略和dnat策略使用
This commit is contained in:
@@ -327,4 +327,14 @@ public class IpMultiplexService extends BaseService{
|
||||
public IpReuseDnatPolicyCfg getDnatCfg(Long cfgId,Integer compileId) {
|
||||
return ipMultiplexDao.getDnatCfg(cfgId,compileId);
|
||||
}
|
||||
|
||||
public List<IpReusePolicyCfg> findByUser(String userName) {
|
||||
List<IpReusePolicyCfg> list=ipMultiplexDao.findByUser(userName);
|
||||
return list;
|
||||
}
|
||||
|
||||
public List<IpReuseDnatPolicyCfg> findDnatUser(String userName) {
|
||||
List<IpReuseDnatPolicyCfg> list=ipMultiplexDao.findDnatUser(userName);
|
||||
return list;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -48,6 +48,12 @@ public class UserManageService extends BaseService{
|
||||
return page;
|
||||
}
|
||||
|
||||
public List<UserManage> findList(UserManage entity) {
|
||||
List<UserManage> list=userManageDao.findList(entity);
|
||||
return list;
|
||||
}
|
||||
|
||||
|
||||
public List<UserManage> findByPage(String ids ) {
|
||||
List<UserManage> list=userManageDao.findByList(ids);
|
||||
return list;
|
||||
|
||||
Reference in New Issue
Block a user