<?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="org.springblade.modules.location.mapper.LivePersonLocationMapper">
|
|
|
<select id="getUserLocation" resultType="org.springblade.modules.location.entity.LivePersonLocation">
|
SELECT * FROM sys_live_person_location WHERE user_id = #{userId}
|
</select>
|
|
<select id="getList" resultType="org.springblade.modules.location.vo.LivePersonLocationVO">
|
SELECT lpl.* FROM sys_live_person_location lpl
|
</select>
|
</mapper>
|