修改排序

main
zhaokai 2026-02-12 10:47:48 +08:00
parent cedea5e04c
commit e53f3ebf7c
1 changed files with 3 additions and 1 deletions

View File

@ -63,7 +63,9 @@
<select id="getCheckRecordPageH5" resultType="com.zcloud.fire.check.persistence.dataobject.FireCheckRecordDO">
select cr.*,
GROUP_CONCAT(DISTINCT u.name) AS userNameList,
GROUP_CONCAT(DISTINCT d.name) AS departmentName
GROUP_CONCAT(DISTINCT d.name) AS departmentName,
GROUP_CONCAT(DISTINCT cfp.fire_point_name) AS firePointNameList,
GROUP_CONCAT(DISTINCT cfp.fire_region_name) AS fireRegionNameList
from fire_check_record cr
left join fire_check_record_user cru on cr.fire_record_id = cru.fire_record_id and cru.delete_enum = 'FALSE'
left join user u on cru.user_id = u.id