feat: add getTaskReview API endpoint for fetching all reports and fragments by task number
This commit is contained in:
@@ -30,6 +30,11 @@ public class ReviewServiceImpl implements ReviewService {
|
||||
return reviewMapper.selectReviewFeed(limit);
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<ReviewFeedItem> getTaskReview(String taskNum) {
|
||||
return reviewMapper.selectTaskReview(taskNum);
|
||||
}
|
||||
|
||||
@Override
|
||||
public StudyReportsEntity getReportDetail(int id) throws NotFindEntitiesException {
|
||||
return Optional.ofNullable(studyReportsMapper.selectById(id))
|
||||
|
||||
Reference in New Issue
Block a user