Commit a2f7702f by wuwenlong

iplat/eplat to schema

parent 1cd2b399
......@@ -3,7 +3,7 @@
<!-- table information
Generate time : 2024-01-08 18:33:20
Version : 1.0
tableName :eplat.tveci002
tableName :${eplatSchema}..tveci002
RES_ID VARCHAR NOT NULL primarykey,
RES_CLASS VARCHAR NOT NULL primarykey,
HTML_CODE VARCHAR,
......@@ -30,7 +30,7 @@
REC_REVISOR as "recRevisor", <!-- 更新人员 -->
REC_REVISE_TIME as "recReviseTime", <!-- 更新时间 -->
DEPENDENCIES as "dependencies" <!-- js依赖 -->
FROM eplat.tveci002 WHERE 1=1
FROM ${eplatSchema}..tveci002 WHERE 1=1
<isNotEmpty prepend=" AND " property="resId">
RES_ID = #resId#
</isNotEmpty>
......@@ -50,7 +50,7 @@
</select>
<select id="count" resultClass="int">
SELECT COUNT(*) FROM eplat.tveci002 WHERE 1=1
SELECT COUNT(*) FROM ${eplatSchema}..tveci002 WHERE 1=1
<isNotEmpty prepend=" AND " property="resId">
RES_ID = #resId#
</isNotEmpty>
......@@ -93,7 +93,7 @@
-->
<insert id="insert">
INSERT INTO eplat.tveci002 (RES_ID, <!-- 资源ID -->
INSERT INTO ${eplatSchema}..tveci002 (RES_ID, <!-- 资源ID -->
RES_CLASS, <!-- 资源类型 -->
HTML_CODE, <!-- html代码 -->
CSS_CODE, <!-- 样式代码 -->
......@@ -108,13 +108,13 @@
</insert>
<delete id="delete">
DELETE FROM eplat.tveci002 WHERE
DELETE FROM ${eplatSchema}..tveci002 WHERE
RES_ID = #resId# AND
RES_CLASS = #resClass#
</delete>
<update id="update">
UPDATE eplat.tveci002
UPDATE ${eplatSchema}..tveci002
SET
HTML_CODE = #htmlCode#, <!-- html代码 -->
CSS_CODE = #cssCode#, <!-- 样式代码 -->
......
......@@ -19,7 +19,7 @@
when c.LOG_VALUE = 6 then '二级报警状态'
else '异常状态' end as STATUS_DESC
from hpjx.t_hpsb003 a
join iplat.TXSOG01 b on a.GROUP_CODE = b.ORG_ID and b.IS_DELETED = 0
join ${platSchema}.TXSOG01 b on a.GROUP_CODE = b.ORG_ID and b.IS_DELETED = 0
join hpjx.t_hpsb002 c on a.DEVICE_CODE=c.EQUIPMENT_CODE
where a.DELETE_FLAG = 0 and DEVICE_STATUS = 1 and c.EQUIPMENT_TYPE = 'STARUS_TYPE'
and a.COMPANY_CODE = #companyCode#
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment