Skip to content

Commit

Permalink
Closes Taskana#2542 - Flag that counts the comments of a task has bee…
Browse files Browse the repository at this point in the history
…n added
  • Loading branch information
MM1277 committed Mar 25, 2024
1 parent 4eea3d2 commit 9d4b317
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ public interface TaskQueryMapper {
@Result(property = "priority", column = "PRIORITY")
@Result(property = "manualPriority", column = "MANUAL_PRIORITY")
@Result(property = "state", column = "STATE")
@Result(property = "numberOfComments", column = "NUMBER_OF_COMMENTS")
@Result(property = "workbasketSummaryImpl.domain", column = "DOMAIN")
@Result(property = "workbasketSummaryImpl.key", column = "WORKBASKET_KEY")
@Result(property = "workbasketSummaryImpl.id", column = "WORKBASKET_ID")
Expand Down Expand Up @@ -69,6 +68,7 @@ public interface TaskQueryMapper {
@Result(property = "customInt6", column = "CUSTOM_INT_6")
@Result(property = "customInt7", column = "CUSTOM_INT_7")
@Result(property = "customInt8", column = "CUSTOM_INT_8")
@Result(property = "numberOfComments", column = "NUMBER_OF_COMMENTS")
List<TaskSummaryImpl> queryTaskSummaries(TaskQueryImpl taskQuery);

@SelectProvider(type = TaskQuerySqlProvider.class, method = "queryTaskSummariesDb2")
Expand All @@ -88,7 +88,6 @@ public interface TaskQueryMapper {
@Result(property = "priority", column = "PRIORITY")
@Result(property = "manualPriority", column = "MANUAL_PRIORITY")
@Result(property = "state", column = "STATE")
@Result(property = "numberOfComments", column = "NUMBER_OF_COMMENTS")
@Result(property = "workbasketSummaryImpl.domain", column = "DOMAIN")
@Result(property = "workbasketSummaryImpl.key", column = "WORKBASKET_KEY")
@Result(property = "workbasketSummaryImpl.id", column = "WORKBASKET_ID")
Expand Down Expand Up @@ -131,6 +130,7 @@ public interface TaskQueryMapper {
@Result(property = "customInt6", column = "CUSTOM_INT_6")
@Result(property = "customInt7", column = "CUSTOM_INT_7")
@Result(property = "customInt8", column = "CUSTOM_INT_8")
@Result(property = "numberOfComments", column = "NUMBER_OF_COMMENTS")
List<TaskSummaryImpl> queryTaskSummariesDb2(TaskQueryImpl taskQuery);

@SelectProvider(type = TaskQuerySqlProvider.class, method = "queryTaskSummariesOracle")
Expand All @@ -150,7 +150,6 @@ public interface TaskQueryMapper {
@Result(property = "priority", column = "PRIORITY")
@Result(property = "manualPriority", column = "MANUAL_PRIORITY")
@Result(property = "state", column = "STATE")
@Result(property = "numberOfComments", column = "NUMBER_OF_COMMENTS")
@Result(property = "workbasketSummaryImpl.domain", column = "DOMAIN")
@Result(property = "workbasketSummaryImpl.key", column = "WORKBASKET_KEY")
@Result(property = "workbasketSummaryImpl.id", column = "WORKBASKET_ID")
Expand Down Expand Up @@ -193,6 +192,7 @@ public interface TaskQueryMapper {
@Result(property = "customInt6", column = "CUSTOM_INT_6")
@Result(property = "customInt7", column = "CUSTOM_INT_7")
@Result(property = "customInt8", column = "CUSTOM_INT_8")
@Result(property = "numberOfComments", column = "NUMBER_OF_COMMENTS")
List<TaskSummaryImpl> queryTaskSummariesOracle(TaskQueryImpl taskQuery);

@SelectProvider(type = TaskQuerySqlProvider.class, method = "countQueryTasks")
Expand Down

0 comments on commit 9d4b317

Please sign in to comment.