21 lines
796 B
Java
21 lines
796 B
Java
|
|
package com.nis.web.dao.configuration;
|
||
|
|
|
||
|
|
import java.util.List;
|
||
|
|
|
||
|
|
import org.apache.ibatis.annotations.Param;
|
||
|
|
|
||
|
|
import com.nis.domain.configuration.PxyObjKeyring;
|
||
|
|
import com.nis.domain.configuration.PxyObjSpoofingIpPool;
|
||
|
|
import com.nis.domain.configuration.PxyObjTrustedCaCert;
|
||
|
|
import com.nis.domain.configuration.PxyObjTrustedCaCrl;
|
||
|
|
import com.nis.web.dao.CrudDao;
|
||
|
|
import com.nis.web.dao.MyBatisDao;
|
||
|
|
|
||
|
|
@MyBatisDao
|
||
|
|
public interface PxyObjSpoofingIpPoolDao extends CrudDao<PxyObjSpoofingIpPool>{
|
||
|
|
List<PxyObjSpoofingIpPool> findPage(PxyObjSpoofingIpPool spoofingPool);
|
||
|
|
List<PxyObjSpoofingIpPool> findList(PxyObjSpoofingIpPool spoofingPool);
|
||
|
|
PxyObjSpoofingIpPool getPxyObjSpoofingIpPool(Long cfgId);
|
||
|
|
int insert(PxyObjSpoofingIpPool spoofingPool);
|
||
|
|
int update(PxyObjSpoofingIpPool spoofingPool);
|
||
|
|
}
|