zhitong.yu
7 天以前 7fc9c42987a13c1d8d2159591a5803e70518827f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package com.hxzk.gps.mapper.Person;
 
import com.hxzk.gps.entity.Person.TbPerson;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.hxzk.gps.result.ResultList;
import org.apache.ibatis.annotations.Select;
 
import java.util.List;
 
/**
 * <p>
 *  Mapper 接口
 * </p>
 *
 * @author YuZhiTong
 * @since 2025-06-12
 */
public interface TbPersonMapper extends BaseMapper<TbPerson> {
 
 
    /*
     * 添加人员定位
     * */
    List<TbPerson> PersonPosition(List<Long> list);
 
 
    /*
     * 实时人员位置信息
     * */
    List<TbPerson> RealPosition(List<Long> list);
 
    /*
     * 实时人员位置信息
     * */
    List<TbPerson> RealPosition2D(List<Long> list);
}