You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
test1/service/AnswerService.java

13 lines
363 B

package club.service;
import club.pojo.Answer;
import java.util.List;
public interface AnswerService {
List<Answer> answersAboutOneComment(Integer commentId);
Integer create(Integer userId, Integer commentId, String content);
Answer findById(Integer id);
Integer creates(Integer userId, Integer replayrId, String content, Integer commentId);
}