SNAT地址池管理提交.
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
package com.nis.web.dao.configuration;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
import com.nis.domain.configuration.BaseIpCfg;
|
||||
import com.nis.domain.configuration.IpAddrPoolCfg;
|
||||
import com.nis.web.dao.CrudDao;
|
||||
import com.nis.web.dao.MyBatisDao;
|
||||
|
||||
@MyBatisDao
|
||||
public interface IpAddrPoolCfgDao extends CrudDao<IpAddrPoolCfgDao>{
|
||||
|
||||
List<IpAddrPoolCfg> findPage(IpAddrPoolCfg entity);
|
||||
|
||||
List<IpAddrPoolCfg> findList(@Param("cfgId")Long cfgId
|
||||
,@Param("isAudit")Integer isAudit
|
||||
,@Param("isValid")Integer isValid);
|
||||
|
||||
|
||||
void saveAddrPoolCfg(IpAddrPoolCfg cfg);
|
||||
|
||||
void updateAddrPoolCfg(IpAddrPoolCfg entity);
|
||||
|
||||
void saveReuseIpCfgs(BaseIpCfg ipCfg);
|
||||
|
||||
List<BaseIpCfg> getReuseIpCfgs(@Param("addrPoolId")Integer addrPoolId);
|
||||
|
||||
void deleteReuseIpCfgs(@Param("addrPoolId")Integer addrPoolId);
|
||||
|
||||
Integer getAddrPoolId(@Param("cfgId")Long cfgId);
|
||||
|
||||
IpAddrPoolCfg getCfgInfo(IpAddrPoolCfg cfg);
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user