接口调整

This commit is contained in:
2023-08-14 21:35:27 +08:00
parent a0e1bb0225
commit 17d1104509
4 changed files with 33 additions and 4 deletions

View File

@@ -47,12 +47,14 @@
<select id="findAll" resultType="EpdDTO">
select
t0.Name dictName,
t1.Name tableName
t1.Name tableName,
t0.Harm_Start harmStart,
t0.Harm_End harmEnd
from
ele_epd_pqd t0
left join sys_dict_data t1 on
t0.Class_Id = t1.Id
where t0.status = 1
group by t0.Name,t1.Name
group by t0.Name,t1.Name,t0.Harm_Start,t0.Harm_End
</select>
</mapper>