11 lines
203 B
Java
11 lines
203 B
Java
package com.lovenav.service;
|
|
|
|
import com.lovenav.entity.Comment;
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
|
public interface CommentService {
|
|
// 点赞
|
|
public String AddLikeCount(int id);
|
|
}
|