File tree Expand file tree Collapse file tree
flowable-app-rest/src/test/java/org/flowable/test/persistence
flowable-batch-service/src/main/resources/org/flowable/batch/service/db/mapping/entity Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1550,8 +1550,13 @@ protected static void addBatchPartParams() {
15501550 info .addColumn ("BATCH_SEARCH_KEY2_" , "batchSearchKey2" , PARAMETER_TYPE_NVARCHAR );
15511551
15521552 info .addQueryParameter ("tenantIdLike" , PARAMETER_TYPE_NVARCHAR );
1553+
1554+ info .addColumn ("TOTAL_COUNT_" , "totalBatchParts" , PARAMETER_TYPE_BIGINT );
1555+ info .addColumn ("COMPLETED_COUNT_" , "completedBatchParts" , PARAMETER_TYPE_BIGINT );
1556+ info .addColumn ("SUCCESS_COUNT_" , "successBatchParts" , PARAMETER_TYPE_BIGINT );
1557+ info .addColumn ("FAILED_COUNT_" , "failedBatchParts" , PARAMETER_TYPE_BIGINT );
15531558 }
1554-
1559+
15551560 protected static void addDeadLetterJobParams () {
15561561 ParameterInfo info = addParameterInfo ("deadLetterJob" );
15571562 info .addColumn ("ID_" ,"id" , PARAMETER_TYPE_NVARCHAR );
Original file line number Diff line number Diff line change 163163 </sql >
164164
165165 <resultMap id =" batchSummaryMap" type =" org.flowable.batch.api.BatchSummary" >
166- <result property =" totalBatchParts" column =" TOTAL_COUNT_" />
167- <result property =" completedBatchParts" column =" COMPLETED_COUNT_" />
168- <result property =" successBatchParts" column =" SUCCESS_COUNT_" />
169- <result property =" failedBatchParts" column =" FAILED_COUNT_" />
166+ <result property =" totalBatchParts" column =" TOTAL_COUNT_" jdbcType = " BIGINT " />
167+ <result property =" completedBatchParts" column =" COMPLETED_COUNT_" jdbcType = " BIGINT " />
168+ <result property =" successBatchParts" column =" SUCCESS_COUNT_" jdbcType = " BIGINT " />
169+ <result property =" failedBatchParts" column =" FAILED_COUNT_" jdbcType = " BIGINT " />
170170 </resultMap >
171171
172172 <select id =" selectBatchPartCountSummaryByBatchId" parameterType =" map" resultMap =" batchSummaryMap" >
You can’t perform that action at this time.
0 commit comments