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