Merge branch 'master' of D:\Dev\Projects\Java\udiwms-java with conflicts.

master
x_z 3 years ago
parent 0c29008d38
commit e01a62ed16

6
.gitignore vendored

@ -1,6 +1,8 @@
/target/ /target/
!.mvn/wrapper/maven-wrapper.jar !.mvn/wrapper/maven-wrapper.jar
*.class
### STS ### ### STS ###
.apt_generated .apt_generated
.classpath .classpath
@ -22,4 +24,6 @@
/nbbuild/ /nbbuild/
/dist/ /dist/
/nbdist/ /nbdist/
/.nb-gradle/ /.nb-gradle/
/api-admin/target/
/api-common/target/

@ -13,6 +13,9 @@ public class BasicThirdSysEntity {
private String thridUrl; private String thridUrl;
private Boolean mainSys; private Boolean mainSys;
//第三方系统IP地址
private String thirdSysUrl;
//第三方系统授权码 //第三方系统授权码
private String apikey; private String apikey;

@ -13,6 +13,7 @@
<if test="thridUrl != null">thridUrl=#{thridUrl},</if> <if test="thridUrl != null">thridUrl=#{thridUrl},</if>
<if test="enabled != null">enabled=#{enabled},</if> <if test="enabled != null">enabled=#{enabled},</if>
<if test="mainSys != null">mainSys=#{mainSys},</if> <if test="mainSys != null">mainSys=#{mainSys},</if>
<if test="thirdSysUrl != null">thirdSysUrl=#{thirdSysUrl},</if>
<if test="apikey != null">apikey=#{apikey},</if> <if test="apikey != null">apikey=#{apikey},</if>
<if test="secretkey != null">secretkey=#{secretkey}</if> <if test="secretkey != null">secretkey=#{secretkey}</if>
</trim> </trim>

Loading…
Cancel
Save