WechatGroup

This commit is contained in:
Lishundong
2025-10-09 21:49:17 +08:00
parent cb133254b6
commit 131d6dd84f
2 changed files with 18 additions and 10 deletions

View File

@@ -11,7 +11,7 @@ MODEL_NAME=${JAR_PATH}
PROFILE=dev
# JVM配置
JVM_MEMORY=" -Xms256M -Xmx256M -XX:MaxDirectMemorySize=256M"
JVM_MEMORY=" -Xms2048M -Xmx2048M -XX:MaxDirectMemorySize=2048M"
# 远程调试
JVM_DEBUG=""
# JVM_DEBUG=" -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=6011"

View File

@@ -196,14 +196,22 @@
</select>
<select id="selectRowCompany" resultType="com.ruoyi.cms.domain.Company">
SELECT *
FROM (select AAB004 AS name,ANY_VALUE(AAE006) AS location,ANY_VALUE(IndustryType)
as remark,ANY_VALUE(IndustrySub) as industry,ANY_VALUE(Num_OK) as scale,ANY_VALUE(AAB092) as description,ANY_VALUE(AAB019_OK) as nature from row_work
group by AAB004
)AS b
where not exists (
select 1
from company
where b.name = company.name
FROM (
SELECT
AAB004 AS name,
MIN(AAE006) AS location,
MIN(IndustryType) as remark,
MIN(IndustrySub) as industry,
MIN(Num_OK) as scale,
MIN(AAB092) as description,
MIN(AAB019_OK) as nature
FROM row_work
GROUP BY AAB004
) AS b
WHERE NOT EXISTS (
SELECT 1
FROM company
WHERE b.name = company.name
)
</select>
<select id="selectAllJob" resultType="com.ruoyi.cms.domain.Job">