WechatGroup
This commit is contained in:
@@ -11,7 +11,7 @@ MODEL_NAME=${JAR_PATH}
|
|||||||
PROFILE=dev
|
PROFILE=dev
|
||||||
|
|
||||||
# JVM配置
|
# JVM配置
|
||||||
JVM_MEMORY=" -Xms256M -Xmx256M -XX:MaxDirectMemorySize=256M"
|
JVM_MEMORY=" -Xms2048M -Xmx2048M -XX:MaxDirectMemorySize=2048M"
|
||||||
# 远程调试
|
# 远程调试
|
||||||
JVM_DEBUG=""
|
JVM_DEBUG=""
|
||||||
# JVM_DEBUG=" -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=6011"
|
# JVM_DEBUG=" -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=6011"
|
||||||
|
@@ -196,15 +196,23 @@
|
|||||||
</select>
|
</select>
|
||||||
<select id="selectRowCompany" resultType="com.ruoyi.cms.domain.Company">
|
<select id="selectRowCompany" resultType="com.ruoyi.cms.domain.Company">
|
||||||
SELECT *
|
SELECT *
|
||||||
FROM (select AAB004 AS name,ANY_VALUE(AAE006) AS location,ANY_VALUE(IndustryType)
|
FROM (
|
||||||
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
|
SELECT
|
||||||
group by AAB004
|
AAB004 AS name,
|
||||||
)AS b
|
MIN(AAE006) AS location,
|
||||||
where not exists (
|
MIN(IndustryType) as remark,
|
||||||
select 1
|
MIN(IndustrySub) as industry,
|
||||||
from company
|
MIN(Num_OK) as scale,
|
||||||
where b.name = company.name
|
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>
|
||||||
<select id="selectAllJob" resultType="com.ruoyi.cms.domain.Job">
|
<select id="selectAllJob" resultType="com.ruoyi.cms.domain.Job">
|
||||||
SELECT j.*,c.industry,c.scale,c.nature as company_nature FROM job as j
|
SELECT j.*,c.industry,c.scale,c.nature as company_nature FROM job as j
|
||||||
|
Reference in New Issue
Block a user