调整主数据下发条数

This commit is contained in:
yuqh 2024-09-13 10:48:05 +08:00
parent 553ea0376c
commit 6055a0954c
4 changed files with 9 additions and 9 deletions

View File

@ -544,7 +544,7 @@ public class MdmModulePluginInitializer extends PluginBaseEntity {
map1.put("tableName",mainDb);
map1.put("dataStatus", "N");
map1.put("deleteStatus", "0");
map1.put("size", 10);
map1.put("size", 50);
objects = mdmModuleDao.queryMdmSTs(map1);
objects = toLowerCaseKeys(objects);
@ -739,7 +739,7 @@ public class MdmModulePluginInitializer extends PluginBaseEntity {
map1.put("tableName",mainDb);
//map1.put("dataStatus", "F");
map1.put("updateStatus", "0");
map1.put("size", 10);
map1.put("size", 50);
objects = mdmModuleDao.queryMdmSTs(map1);
objects = toLowerCaseKeys(objects);
@ -927,7 +927,7 @@ public class MdmModulePluginInitializer extends PluginBaseEntity {
map1.put("tableName",mainDb);
//map1.put("dataStatus", "Y");
map1.put("addStatus", "0");
map1.put("size", 100);
map1.put("size", 50);
objects = mdmModuleDao.queryMdmSTs(map1);
objects = toLowerCaseKeys(objects);

View File

@ -93,7 +93,7 @@ mybatis-plus:
db-config:
id-type: auto # 主键策略
zt:
url: http://127.0.0.1:9999/kangarooDataCenterV3/entranceController/externalCallInterface
url: http://127.0.0.1:8901/kangarooDataCenterV3/entranceController/externalCallInterface
#JimuReport[minidao配置]
minidao :
base-package: org.jeecg.modules.jmreport.desreport.dao*

View File

@ -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>

View File

@ -79,7 +79,7 @@
FROM
information_schema.TABLES
WHERE
TABLE_SCHEMA = 'businesscenter'
TABLE_SCHEMA = 'businesscenter_kjs'
and TABLE_NAME = #{tableName}
</select>