diff --git a/pom.xml b/pom.xml index f10ccfc1..81fb184f 100644 --- a/pom.xml +++ b/pom.xml @@ -45,7 +45,7 @@ 3.0.3 5.7.17 - 3.4.3.4 + 3.5.1 3.6 3.14.0 3.5.1 @@ -85,6 +85,12 @@ mybatis-plus-boot-starter ${mybatisplus.version} + + + com.baomidou + mybatis-plus-generator + ${mybatisplus.version} + diff --git a/xjs-business/pom.xml b/xjs-business/pom.xml index 48242b88..5f822c5b 100644 --- a/xjs-business/pom.xml +++ b/xjs-business/pom.xml @@ -24,6 +24,7 @@ xjs-business-statistics xjs-business-webmagic xjs-business-blog + xjs-business-srb diff --git a/xjs-business/xjs-business-openapi/src/main/java/com/xjs/common/aop/ApiLogAspect.java b/xjs-business/xjs-business-openapi/src/main/java/com/xjs/common/aop/ApiLogAspect.java index 2ab1c0c0..87e3aeb1 100644 --- a/xjs-business/xjs-business-openapi/src/main/java/com/xjs/common/aop/ApiLogAspect.java +++ b/xjs-business/xjs-business-openapi/src/main/java/com/xjs/common/aop/ApiLogAspect.java @@ -149,6 +149,7 @@ public class ApiLogAspect { } } entity.setMethod(apiLog.method()); + entity.setIsSuccess(SUCCESS); String response = null; if (Objects.nonNull(jsonResult)) { response = jsonResult.toString(); @@ -161,8 +162,6 @@ public class ApiLogAspect { } if (e != null || StringUtils.isEmpty(response)) { entity.setIsSuccess(ReqConst.ERROR); - } else { - entity.setIsSuccess(SUCCESS); } remoteLogFeign.saveApiLog(entity); } diff --git a/xjs-business/xjs-business-srb/pom.xml b/xjs-business/xjs-business-srb/pom.xml new file mode 100644 index 00000000..6db1d741 --- /dev/null +++ b/xjs-business/xjs-business-srb/pom.xml @@ -0,0 +1,32 @@ + + + + xjs-business + com.xjs + 3.3.0 + + 4.0.0 + 金融模块-尚融宝 + + srb-service-base + srb-service-core + + pom + + xjs-business-srb + + + 11 + 11 + + + + + com.xjs + xjs-business-common + + + + \ No newline at end of file diff --git a/xjs-business/xjs-business-srb/srb-service-base/pom.xml b/xjs-business/xjs-business-srb/srb-service-base/pom.xml new file mode 100644 index 00000000..8a3e3194 --- /dev/null +++ b/xjs-business/xjs-business-srb/srb-service-base/pom.xml @@ -0,0 +1,20 @@ + + + + xjs-business-srb + com.xjs + 3.3.0 + + 4.0.0 + 尚融宝-基础服务 + + srb-service-base + + + 11 + 11 + + + \ No newline at end of file diff --git a/xjs-business/xjs-business-srb/srb-service-core/pom.xml b/xjs-business/xjs-business-srb/srb-service-core/pom.xml new file mode 100644 index 00000000..3f1f2113 --- /dev/null +++ b/xjs-business/xjs-business-srb/srb-service-core/pom.xml @@ -0,0 +1,34 @@ + + + + xjs-business-srb + com.xjs + 3.3.0 + + 4.0.0 + 尚融宝-核心服务 + + srb-service-core + + + 11 + 11 + + + + + + com.baomidou + mybatis-plus-generator + + + + org.apache.velocity + velocity-engine-core + + + + + \ No newline at end of file