点赞++2

This commit is contained in:
sjm
2023-12-20 23:44:43 +08:00
parent c1ae7cb7bc
commit 1399bfd1e5
4 changed files with 25 additions and 16 deletions

View File

@@ -1,8 +1,10 @@
package com.lovenav.service;
import com.lovenav.entity.Comment;
import org.springframework.stereotype.Service;
public interface CommentService {
// 点赞
public String AddLikeCount(Comment comment);
public String AddLikeCount(int id);
}