parent
348f42ad35
commit
f01ecf76bd
@ -0,0 +1,38 @@
|
||||
package org.sang.mapper;
|
||||
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
import org.sang.bean.Article;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
|
||||
@Mapper
|
||||
public interface ArticleMapper {
|
||||
int addNewArticle(Article article);
|
||||
|
||||
int updateArticle(Article article);
|
||||
|
||||
List<Article> getArticleByState(@Param("state") Integer state, @Param("start") Integer start, @Param("count") Integer count, @Param("uid") Long uid,@Param("keywords") String keywords);
|
||||
|
||||
// List<Article> getArticleByStateByAdmin(@Param("start") int start, @Param("count") Integer count, @Param("keywords") String keywords);
|
||||
|
||||
int getArticleCountByState(@Param("state") Integer state, @Param("uid") Long uid, @Param("keywords") String keywords);
|
||||
|
||||
int updateArticleState(@Param("aids") Long aids[], @Param("state") Integer state);
|
||||
|
||||
int updateArticleStateById(@Param("articleId") Integer articleId, @Param("state") Integer state);
|
||||
|
||||
int deleteArticleById(@Param("aids") Long[] aids);
|
||||
|
||||
Article getArticleById(Long aid);
|
||||
|
||||
void pvIncrement(Long aid);
|
||||
|
||||
//INSERT INTO pv(countDate,pv,uid) SELECT NOW(),SUM(pageView),uid FROM article GROUP BY uid
|
||||
void pvStatisticsPerDay();
|
||||
|
||||
List<String> getCategories(Long uid);
|
||||
|
||||
List<Integer> getDataStatistics(Long uid);
|
||||
}
|
Loading…
Reference in new issue