2018-02-28 12:15:52 +08:00
|
|
|
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;
|
|
|
|
|
|
|
|
|
|
/**
|
2018-04-11 18:47:02 +08:00
|
|
|
* 增强字符串相关配置数据处理类
|
2018-02-28 12:15:52 +08:00
|
|
|
* @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) ;
|
2018-04-11 18:47:02 +08:00
|
|
|
public List<ComplexkeywordCfg> getList(@Param("tableName")String tableName,@Param("ids")String ids) ;
|
2018-02-28 12:15:52 +08:00
|
|
|
public List<ComplexkeywordCfg> findList(ComplexkeywordCfg entity) ;
|
|
|
|
|
public int insert(ComplexkeywordCfg entity) ;
|
|
|
|
|
public int updateByPrimaryKeySelective(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);
|
2018-03-26 14:43:58 +08:00
|
|
|
public int deleteByCompileId(ComplexkeywordCfg entity);
|
2018-04-11 18:47:02 +08:00
|
|
|
public int delete(@Param("tableName")String tableName,@Param("ids")String ids);
|
2018-02-28 12:15:52 +08:00
|
|
|
}
|