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 long
countByCriteria(CommentQueryImpl commentQuery)
void
deleteByScopeIdAndScopeType(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)
-
-