| 1234567891011121314151617181920212223242526 |
- 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<NewsSummary> findList(Map<String, Object> params);
- }
|