12 lines
576 B
XML
12 lines
576 B
XML
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<!DOCTYPE mapper
|
||
|
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||
|
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||
|
<mapper namespace="com.zsc.edu.gateway.modules.iot.tsl.repo.EventLogRepository">
|
||
|
<select id="selectList" resultType="com.zsc.edu.gateway.modules.iot.tsl.entity.EventLog">
|
||
|
select iel.*, ird.content as recordDataContent, ird.client_id as clientId, ird.record_time as recordTime
|
||
|
from iot_event_log iel,
|
||
|
iot_record_data ird
|
||
|
where iel.record_id = ird.id
|
||
|
</select>
|
||
|
</mapper>
|