package com.goafanti.common.dao; import java.util.List; import java.util.Map; import com.goafanti.common.model.News; import com.goafanti.news.bo.NewsSummary; public interface NewsMapper { int deleteByPrimaryKey(Long id); int insert(News record); int insertSelective(News record); News selectByPrimaryKey(Long id); int updateByPrimaryKeySelective(News record); int updateByPrimaryKeyWithBLOBs(News record); int updateByPrimaryKey(News record); List findList(Map params); }