package com.nis.web.dao.configuration; import java.util.List; import org.apache.ibatis.annotations.Param; import com.nis.domain.callback.ProxyFileResponsePageCfg; import com.nis.web.dao.MyBatisDao; /** * 特定协议相关配置数据处理类 * @author dell * */ @MyBatisDao public interface ProxyFileResponsePageDao { public List findPage(ProxyFileResponsePageCfg entity) ; public ProxyFileResponsePageCfg getCfgById(@Param("cfgId")Long cfgId); public void insert(ProxyFileResponsePageCfg entity); public void update(ProxyFileResponsePageCfg entity); List findByList(@Param("ids")String ids); }