修改结构
This commit is contained in:
parent
f33447e4f2
commit
0e471d20a3
|
@ -32,6 +32,8 @@ import com.hzya.frame.sysnew.application.script.entity.SysApplicationScriptEntit
|
|||
import com.hzya.frame.sysnew.grovy.service.IGroovyIntegrationService;
|
||||
import com.hzya.frame.sysnew.integtationTaskLivingDetails.entity.IntegrationTaskLivingDetailsEntity;
|
||||
import com.hzya.frame.sysnew.integtationTaskLivingDetails.service.IIntegrationTaskLivingDetailsService;
|
||||
import com.hzya.frame.testCbs.service.ITsetCbsService;
|
||||
import com.hzya.frame.testU8c.service.ITsetU8cService;
|
||||
import com.hzya.frame.uuid.UUIDUtils;
|
||||
import com.hzya.frame.web.entity.BaseResult;
|
||||
import com.hzya.frame.web.entity.JsonResultEntity;
|
||||
|
@ -117,9 +119,17 @@ public class MdmModulePluginInitializer extends PluginBaseEntity {
|
|||
public String getPluginType() {
|
||||
return "1";
|
||||
}
|
||||
@Resource
|
||||
private ITsetCbsService tsetCbsService;
|
||||
@Resource
|
||||
private ITsetU8cService tsetU8cService;
|
||||
|
||||
@Override
|
||||
public JsonResultEntity executeBusiness(JSONObject requestJson) {
|
||||
|
||||
tsetCbsService.testCbs(new JSONObject());
|
||||
tsetU8cService.testU8c(new JSONObject());
|
||||
requestJson = null;
|
||||
try{
|
||||
//重试方法
|
||||
if (null != requestJson) {
|
||||
|
@ -1484,4 +1494,7 @@ public class MdmModulePluginInitializer extends PluginBaseEntity {
|
|||
}
|
||||
return jsonObjects;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
|
|
@ -125,4 +125,4 @@ jeecg :
|
|||
minio_pass: ??
|
||||
bucketName: ??
|
||||
data:
|
||||
use: false
|
||||
use: true
|
||||
|
|
4
pom.xml
4
pom.xml
|
@ -4,6 +4,8 @@
|
|||
<modules>
|
||||
<module>buildpackage</module>
|
||||
<module>service</module>
|
||||
<module>cbs</module>
|
||||
<module>u8c</module>
|
||||
<module>common</module>
|
||||
<module>webapp</module>
|
||||
<module>core</module>
|
||||
|
@ -450,7 +452,7 @@
|
|||
<configuration>
|
||||
<webResources>
|
||||
<resource>
|
||||
<directory>${basedir}/../service/src/main/resources/lib</directory>
|
||||
<directory>${basedir}/../service/src/main/webapp/WEB-INF/lib</directory>
|
||||
<targetPath>WEB-INF/lib/</targetPath>
|
||||
<filtering>false</filtering>
|
||||
<includes>
|
||||
|
|
|
@ -22,14 +22,6 @@
|
|||
<version>${mysql-connector-java}</version>
|
||||
</dependency>
|
||||
|
||||
<!-- service下的lib 写法-->
|
||||
<!-- <dependency>-->
|
||||
<!-- <groupId>com.hzya.openBasicSDK</groupId>-->
|
||||
<!-- <artifactId>openBasicSDK</artifactId>-->
|
||||
<!-- <version>1</version>-->
|
||||
<!-- <scope>system</scope>-->
|
||||
<!-- <systemPath>${basedir}/src/main/resources/lib/openBasicSDK-2.1.230630.jar</systemPath>-->
|
||||
<!-- </dependency>-->
|
||||
</dependencies>
|
||||
<build>
|
||||
<plugins>
|
||||
|
|
|
@ -985,20 +985,20 @@ where id = #{id}
|
|||
<when test="item.connectionSymbol == '1'.toString() ">
|
||||
<choose>
|
||||
<when test="item.rightParenthesis == ')'.toString() ">
|
||||
${item.rightParenthesis} and
|
||||
${item.rightParenthesis}
|
||||
</when>
|
||||
<otherwise>
|
||||
${item.rightParenthesis}
|
||||
${item.rightParenthesis} and
|
||||
</otherwise>
|
||||
</choose>
|
||||
</when>
|
||||
<when test="item.connectionSymbol == '2'.toString() ">
|
||||
<choose>
|
||||
<when test="item.rightParenthesis == ')'.toString() ">
|
||||
${item.rightParenthesis} or
|
||||
${item.rightParenthesis}
|
||||
</when>
|
||||
<otherwise>
|
||||
${item.rightParenthesis}
|
||||
${item.rightParenthesis} or
|
||||
</otherwise>
|
||||
</choose>
|
||||
</when>
|
||||
|
|
|
@ -16,6 +16,16 @@
|
|||
<artifactId>service</artifactId>
|
||||
<version>${revision}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.hzya.frame</groupId>
|
||||
<artifactId>cbs</artifactId>
|
||||
<version>${revision}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.hzya.frame</groupId>
|
||||
<artifactId>u8c</artifactId>
|
||||
<version>${revision}</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
<build>
|
||||
<plugins>
|
||||
|
|
Loading…
Reference in New Issue