CsRecommendConfigMapper.java 671 Bytes
package com.yoho.search.dal;

import com.yoho.search.dal.model.CsRecommendConfig;
import org.apache.ibatis.annotations.Param;

import java.util.List;

public interface CsRecommendConfigMapper {
    int deleteByPrimaryKey(Integer id);

    int insert(CsRecommendConfig record);

    int insertSelective(CsRecommendConfig record);

    CsRecommendConfig selectByPrimaryKey(Integer id);

    int updateByPrimaryKeySelective(CsRecommendConfig record);

    int updateByPrimaryKey(CsRecommendConfig record);

    int selectCount();

    List<CsRecommendConfig> selectPageLists(@Param(value="start")Integer start, @Param(value="limit")Integer limit);

}