This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
k18-ntcs-web-ntc/src/main/java/com/nis/web/dao/configuration/ComplexStringCfgDao.java
wangxin 9a130d864d (1)为了使用批量更新,修改了updateByPrimaryKeySelective方法的方法名为update
(2)多域类配置加入地域IP
(3)多域类配置可任选
(4)多域类配置加入批量删除,审核
2018-04-13 13:50:29 +08:00

33 lines
1.3 KiB
Java

package com.nis.web.dao.configuration;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import com.nis.domain.configuration.ComplexkeywordCfg;
import com.nis.web.dao.CrudDao;
import com.nis.web.dao.MyBatisDao;
/**
* 增强字符串相关配置数据处理类
* @author dell
*
*/
@MyBatisDao
public interface ComplexStringCfgDao extends CrudDao<ComplexkeywordCfg>{
public ComplexkeywordCfg getById(@Param("tableName")String tableName,@Param("cfgId")Long id) ;
public ComplexkeywordCfg get(ComplexkeywordCfg entity) ;
public List<ComplexkeywordCfg> getList(@Param("tableName")String tableName,@Param("ids")String ids) ;
public List<ComplexkeywordCfg> findList(ComplexkeywordCfg entity) ;
public int insert(ComplexkeywordCfg entity) ;
public int update(ComplexkeywordCfg entity) ;
public int updateValid(ComplexkeywordCfg entity) ;
public int audit(ComplexkeywordCfg entity) ;
public int getIsValid(@Param("tableName")String tableName,@Param("cfgId")Long id);
public int getIsValid(ComplexkeywordCfg entity);
public int getIsAudit(@Param("tableName")String tableName,@Param("cfgId")Long id);
public int getIsAudit(ComplexkeywordCfg entity);
public int deleteByCompileId(ComplexkeywordCfg entity);
public int delete(@Param("tableName")String tableName,@Param("ids")String ids);
}