dataToPuyang/src/main/java/com/hxl/puyang/location/mapper/LocationRealdataMapper.java
liuzhenlei 25c843650e 完成
2024-10-16 17:03:01 +08:00

31 lines
696 B
Java

package com.hxl.puyang.location.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.hxl.puyang.location.entity.LocationRealdata;
import com.hxl.puyang.location.model.RealDataModel;
import org.apache.ibatis.annotations.Mapper;
import java.util.List;
/**
* @author lzl
* @description 针对表【hxl_location_realdata(实时定位表)】的数据库操作Mapper
* @createDate 2024-10-15 11:04:40
* @Entity com.hxl.puyang.location.entity.LocationRealdata
*/
@Mapper
public interface LocationRealdataMapper extends BaseMapper<LocationRealdata> {
/**
* 获取人员定位实时数据
*
* @return
*/
List<RealDataModel> getRealData();
}