人脸检测逻辑

This commit is contained in:
2024-12-05 17:42:32 +08:00
parent bf73241bf4
commit 3f3c239627
12 changed files with 215 additions and 4 deletions

View File

@ -53,4 +53,9 @@
left join scenic s on d.scenic_id = s.id
where d.id = #{id}
</select>
<select id="listByScenicId" resultType="com.ycwl.basic.model.pc.device.resp.DeviceRespVO">
select d.id, d.name, no, d.status, create_at, d.update_at
from device d
where d.scenic_id = #{scenicId}
</select>
</mapper>