修改区域地域ip和地域运营商不互斥的bug

去掉cfgIndexInfo中areaIpCfg对象
cont_ip修改功能完成
This commit is contained in:
duandongmei
2018-05-30 17:10:39 +08:00
parent 911b9a6e09
commit d0d9c3eece
9 changed files with 221 additions and 205 deletions

View File

@@ -17,10 +17,9 @@ import com.nis.web.dao.MyBatisDao;
@MyBatisDao
public interface AreaIpCfgDao extends CrudDao<AreaIpCfg>{
public List<AreaIpCfg> getByCompileId(@Param("compileId") int compileId) ;
public List<AreaIpCfg> findAreaIpCfgList(CfgIndexInfo entity);
public void saveAreaIpCfg(AreaIpCfg entity);
public void saveAreaIpCfgFromCfgIndexInfo(CfgIndexInfo entity);
public void updateAreaIpCfgFromCfgIndexInfo(CfgIndexInfo entity);
public void updateAreaIpCfg(AreaIpCfg entity);
public void updateAreaIpCfgValid(AreaIpCfg entity);
public void deleteAreaIpCfg(AreaIpCfg entity);
public void deleteAreaIpCfgByCfgId(CfgIndexInfo entity);
public void deleteAreaIpCfgByCfgId(AreaIpCfg entity);
}