Package pro.taskana.task.internal
Interface TaskCommentQueryMapper
public interface TaskCommentQueryMapper
This class provides a mapper for all task comment queries.
-
Method Summary
Modifier and TypeMethodDescriptioncountQueryTaskComments(TaskCommentQueryImpl taskCommentQuery) queryTaskCommentColumnValues(TaskCommentQueryImpl taskCommentQuery) queryTaskComments(TaskCommentQueryImpl taskCommentQuery, org.apache.ibatis.session.RowBounds rowBounds)
-
Method Details
-
queryTaskComments
@SelectProvider(type=TaskCommentQuerySqlProvider.class, method="queryTaskComments") @Result(property="id",column="ID") @Result(property="taskId",column="TASK_ID") @Result(property="textField",column="TEXT_FIELD") @Result(property="creator",column="CREATOR") @Result(property="creatorFullName",column="FULL_NAME") @Result(property="created",column="CREATED") @Result(property="modified",column="MODIFIED") List<TaskCommentImpl> queryTaskComments(TaskCommentQueryImpl taskCommentQuery, org.apache.ibatis.session.RowBounds rowBounds) -
countQueryTaskComments
@SelectProvider(type=TaskCommentQuerySqlProvider.class, method="countQueryTaskComments") Long countQueryTaskComments(TaskCommentQueryImpl taskCommentQuery) -
queryTaskCommentColumnValues
@SelectProvider(type=TaskCommentQuerySqlProvider.class, method="queryTaskCommentColumnValues") List<String> queryTaskCommentColumnValues(TaskCommentQueryImpl taskCommentQuery)
-