作家后台新增作品封片图片修改功能

This commit is contained in:
xiongxiaoyang
2021-04-24 10:38:55 +08:00
parent 419d7a971b
commit fb0098aef8
5 changed files with 89 additions and 26 deletions

View File

@ -279,4 +279,12 @@ public interface BookService {
* @param authorId
*/
void updateBookContent( Long indexId, String indexName, String content, Long authorId);
/**
* 修改小说封面
* @param bookId
* @param bookPic
* @param authorId
*/
void updateBookPic(Long bookId, String bookPic, Long authorId);
}