Interface CommentDataManager
-
- All Superinterfaces:
DataManager<CommentEntity>
- All Known Implementing Classes:
MyBatisCommentDataManager
public interface CommentDataManager extends DataManager<CommentEntity>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description longcountByCriteria(CommentQueryImpl commentQuery)voiddeleteByScopeIdAndScopeType(String scopeId, String scopeType)List<Comment>findByCriteria(CommentQueryImpl commentQuery)List<Comment>findCommentEntityByUserId(String userId)List<Comment>findCommentsByScopeIdAndType(String scopeId, String scopeType)
-
-
-
Method Detail
-
findCommentsByScopeIdAndType
List<Comment> findCommentsByScopeIdAndType(String scopeId, String scopeType)
-
countByCriteria
long countByCriteria(CommentQueryImpl commentQuery)
-
findByCriteria
List<Comment> findByCriteria(CommentQueryImpl commentQuery)
-
-