CsRecallConfigSknPoolMapper.java
645 Bytes
package com.yoho.search.dal;
import com.yoho.search.dal.model.CsRecallConfigSknPool;
import org.apache.ibatis.annotations.Param;
import java.util.List;
public interface CsRecallConfigSknPoolMapper {
int deleteByPrimaryKey(Integer id);
int insert(CsRecallConfigSknPool record);
int insertSelective(CsRecallConfigSknPool record);
CsRecallConfigSknPool selectByPrimaryKey(Integer id);
int updateByPrimaryKeySelective(CsRecallConfigSknPool record);
int updateByPrimaryKey(CsRecallConfigSknPool record);
List<CsRecallConfigSknPool> selectBySkns(@Param(value = "skns") List<Integer> skns);
}