1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| package com.fgkj.mapper.impl;
|
| import java.util.List;
|
| import org.springframework.stereotype.Repository;
|
| public interface Positiomap_usrMapper{
|
| //使用replace into实现添加数据
| public boolean add(Object obj) ;
|
| //根据用户查询地图对应的中心坐标
| public List serchByCondition(Object obj) ;
|
| }
|
|