mirror of
https://github.com/201206030/novel-plus.git
synced 2025-07-16 06:06:38 +00:00
增加新闻阅读数
This commit is contained in:
@ -0,0 +1,21 @@
|
||||
package com.java2nb.novel.mapper;
|
||||
|
||||
import com.java2nb.novel.entity.Book;
|
||||
import com.java2nb.novel.vo.BookSpVO;
|
||||
import com.java2nb.novel.vo.BookVO;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @author Administrator
|
||||
*/
|
||||
public interface FrontNewsMapper extends NewsMapper {
|
||||
|
||||
/**
|
||||
* 增加新闻阅读量
|
||||
* @param newsId 新闻ID
|
||||
* */
|
||||
void addReadCount(@Param("newsId") Integer newsId);
|
||||
|
||||
}
|
Reference in New Issue
Block a user