24 lines
784 B
XML
24 lines
784 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.bonus.data.mapper.DILocationMapper">
|
|
|
|
<!--查询位置列表-->
|
|
<select id="getLocationList" resultType="com.bonus.common.domain.data.vo.LocationVo">
|
|
SELECT
|
|
location_name AS locationName,
|
|
location_time AS locationTime
|
|
FROM tb_device_location
|
|
<where>
|
|
<if test="startTime != null">
|
|
AND location_time >= #{startTime}
|
|
</if>
|
|
<if test="endTime != null">
|
|
AND location_time <= #{endTime}
|
|
</if>
|
|
</where>
|
|
ORDER BY location_time DESC
|
|
</select>
|
|
</mapper>
|