Commit 274dfd21 authored by 技术部-任文超's avatar 技术部-任文超

Merge branch 'master' into 20180625-acolyte-buddhistscriptures

# Conflicts:
#	src/main/java/cn/quantgroup/xyqb/config/swagger/SwaggerConfig.java
parents 7c6b7cf9 f038253f
...@@ -2,6 +2,11 @@ ...@@ -2,6 +2,11 @@
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<parent>
<groupId>cn.quantgroup</groupId>
<artifactId>commons-parent</artifactId>
<version>0.2.4</version>
</parent>
<artifactId>xyqb-user2</artifactId> <artifactId>xyqb-user2</artifactId>
<version>0.0.1-SNAPSHOT</version> <version>0.0.1-SNAPSHOT</version>
...@@ -10,12 +15,6 @@ ...@@ -10,12 +15,6 @@
<name>xyqb-user2</name> <name>xyqb-user2</name>
<description>xyqb web application</description> <description>xyqb web application</description>
<parent>
<groupId>cn.quantgroup</groupId>
<artifactId>commons-parent</artifactId>
<version>0.2.4</version>
</parent>
<properties> <properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>1.8</java.version> <java.version>1.8</java.version>
......
...@@ -67,7 +67,7 @@ public class PlatformAPIController implements IBaseController { ...@@ -67,7 +67,7 @@ public class PlatformAPIController implements IBaseController {
} }
return JsonResult.buildSuccessResult("", ImmutableMap.of("type", "external", "transition", merchantConfig.getConfigValue())); return JsonResult.buildSuccessResult("", ImmutableMap.of("type", "external", "transition", merchantConfig.getConfigValue()));
} }
if (StringUtils.isEmpty(nextPage)) { if (StringUtils.isBlank(nextPage)) {
return JsonResult.buildErrorStateResult("", null); return JsonResult.buildErrorStateResult("", null);
} }
return JsonResult.buildSuccessResult("", ImmutableMap.of("type", "user", "transition", nextPage)); return JsonResult.buildSuccessResult("", ImmutableMap.of("type", "user", "transition", nextPage));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment