Files
quote_price/src/main/java/lingtao/net/dao/ArticleMapper.java
T
2025-02-20 15:14:38 +08:00

38 lines
1.1 KiB
Java

package lingtao.net.dao;
import java.util.List;
import lingtao.net.bean.Article;
import lingtao.net.bean.ArticleExample;
import org.apache.ibatis.annotations.Param;
public interface ArticleMapper {
long countByExample(ArticleExample example);
int deleteByExample(ArticleExample example);
int deleteByPrimaryKey(Integer id);
int insert(Article record);
int insertSelective(Article record);
List<Article> selectByExampleWithBLOBs(ArticleExample example);
List<Article> selectByExample(ArticleExample example);
Article selectByPrimaryKey(Integer id);
int updateByExampleSelective(@Param("record") Article record, @Param("example") ArticleExample example);
int updateByExampleWithBLOBs(@Param("record") Article record, @Param("example") ArticleExample example);
int updateByExample(@Param("record") Article record, @Param("example") ArticleExample example);
int updateByPrimaryKeySelective(Article record);
int updateByPrimaryKeyWithBLOBs(Article record);
int updateByPrimaryKey(Article record);
List<Article> getArticle(Article article);
}