智慧保安后台管理-外网项目备份
guoshilong
2023-12-20 cfa829af899676b1464eccac65b11084aa2a8508
1
2
3
4
5
6
7
8
9
10
11
12
13
<?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>