Skip to content

Commit

Permalink
feat:add queryPlanStatistic for backend
Browse files Browse the repository at this point in the history
  • Loading branch information
yushuwang committed Dec 11, 2023
1 parent 3ede30e commit 82c1aed
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 7 deletions.
2 changes: 1 addition & 1 deletion arex-web-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
<parent>
<artifactId>arex-web</artifactId>
<groupId>com.arextest</groupId>
<version>0.6.0.12</version>
<version>0.6.0.13</version>
</parent>
<profiles>
<profile>
Expand Down
2 changes: 1 addition & 1 deletion arex-web-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,6 @@
<parent>
<artifactId>arex-web</artifactId>
<groupId>com.arextest</groupId>
<version>0.6.0.12</version>
<version>0.6.0.13</version>
</parent>
</project>
2 changes: 1 addition & 1 deletion arex-web-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,6 @@
<parent>
<artifactId>arex-web</artifactId>
<groupId>com.arextest</groupId>
<version>0.6.0.12</version>
<version>0.6.0.13</version>
</parent>
</project>
2 changes: 1 addition & 1 deletion arex-web-model-contract/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<parent>
<artifactId>arex-web</artifactId>
<groupId>com.arextest</groupId>
<version>0.6.0.12</version>
<version>0.6.0.13</version>
</parent>

<properties>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
package com.arextest.web.model.contract.contracts;

import com.arextest.model.response.Response;
import com.arextest.model.response.ResponseStatusType;
import com.arextest.web.model.contract.contracts.common.PlanStatistic;
import lombok.Data;

Expand All @@ -8,6 +10,7 @@
* @create 2023/12/8 16:41
*/
@Data
public class QueryPlanStatisticResponseType {
public class QueryPlanStatisticResponseType implements Response {
private PlanStatistic planStatistic;
private ResponseStatusType responseStatusType;
}
2 changes: 1 addition & 1 deletion arex-web-model/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,6 @@
<parent>
<artifactId>arex-web</artifactId>
<groupId>com.arextest</groupId>
<version>0.6.0.12</version>
<version>0.6.0.13</version>
</parent>
</project>
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -386,5 +386,5 @@

<url>https://github.com/arextest/arex-report</url>

<version>0.6.0.12</version>
<version>0.6.0.13</version>
</project>

0 comments on commit 82c1aed

Please sign in to comment.