refactor(pc): 移除日志记录并优化数据查询

- 移除了多个控制器和服务类中的冗余日志记录
- 在查询数据时,不再通过 SQL左连接直接获取景点和设备名称,而是使用 Repository 单独查询
- 更新了 FaceSampleMapper、
This commit is contained in:
2025-09-04 15:57:18 +08:00
parent 480e40d78c
commit dbe0447987
8 changed files with 66 additions and 26 deletions

View File

@@ -54,10 +54,8 @@
</if>
</delete>
<select id="list" resultType="com.ycwl.basic.model.pc.faceSample.resp.FaceSampleRespVO">
select f.id, f.scenic_id, s.name scenicName, device_id, d.name deviceName, face_url, f.score, match_sample_ids, first_match_rate, match_result, f.`status`, f.create_at
select f.id, f.scenic_id, device_id, face_url, f.score, match_sample_ids, first_match_rate, match_result, f.`status`, f.create_at
from face_sample f
left join scenic s on s.id = f.scenic_id
left join device d on d.id = f.device_id
<where>
<if test="scenicId!= null and scenicId!= ''">
and f.scenic_id = #{scenicId}