Package pro.taskana.task.internal
Interface TaskCommentQueryMapper
-
public interface TaskCommentQueryMapperThis class provides a mapper for all task comment queries.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description LongcountQueryTaskComments(TaskCommentQueryImpl taskCommentQuery)List<String>queryTaskCommentColumnValues(TaskCommentQueryImpl taskCommentQuery)List<TaskCommentImpl>queryTaskComments(TaskCommentQueryImpl taskCommentQuery, org.apache.ibatis.session.RowBounds rowBounds)
-
-
-
Method Detail
-
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)
-
-