(1)IP类配置增加区域GK逻辑
(2)修复编译ID的重复获取BUG (3)监测类配置目前不提供区域管控逻辑
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
package com.nis.web.dao.configuration;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
import com.nis.domain.configuration.AreaIpCfg;
|
||||
import com.nis.web.dao.CrudDao;
|
||||
import com.nis.web.dao.MyBatisDao;
|
||||
|
||||
/**
|
||||
* IP相关配置数据处理类
|
||||
* @author dell
|
||||
*
|
||||
*/
|
||||
@MyBatisDao
|
||||
public interface AreaIpCfgDao extends CrudDao<AreaIpCfg>{
|
||||
public AreaIpCfg getById(@Param("cfgId")Long id) ;
|
||||
public List<AreaIpCfg> findList(AreaIpCfg entity) ;
|
||||
public List<AreaIpCfg> getByCompileId(@Param("compileId") int compileId) ;
|
||||
public int insert(AreaIpCfg entity) ;
|
||||
public int updateByPrimaryKeySelective(AreaIpCfg entity) ;
|
||||
public int updateValid(AreaIpCfg entity) ;
|
||||
public int audit(AreaIpCfg entity) ;
|
||||
public int getIsValid(@Param("cfgId")Long id);
|
||||
public int getIsValid(AreaIpCfg entity);
|
||||
public int getIsAudit(@Param("cfgId")Long id);
|
||||
public int getIsAudit(AreaIpCfg entity);
|
||||
public int deleteByCompileId(AreaIpCfg entity);
|
||||
}
|
||||
Reference in New Issue
Block a user