first commit
This commit is contained in:
@@ -0,0 +1,38 @@
|
||||
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);
|
||||
}
|
||||
Reference in New Issue
Block a user