指标字典调整

This commit is contained in:
2023-05-30 15:22:55 +08:00
parent e452e21c71
commit 5067f8575a
5 changed files with 78 additions and 5 deletions

View File

@@ -3,9 +3,19 @@
<mapper namespace="com.njcn.system.mapper.EleEpdPqdMapper">
<select id="page" resultType="EleEpdPqdVO">
SELECT t0.*
FROM ele_epd_pqd t0
${ew.sqlSegment}
SELECT
sdd.Name dataTypeName,
ele_epd_pqd.*
FROM
ele_epd_pqd ele_epd_pqd
left join
sys_dict_data sdd
on
ele_epd_pqd.data_type = sdd.Id
<where>
1=1
and ${ew.sqlSegment}
</where>
</select>
</mapper>