月球大数据地理空间分析展示平台-【后端】-月球后台服务
1
13693261870
2024-11-13 024e90554d19c2342f27a26f91bbea378f84da82
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.moon.server.mapper.data;
 
import com.moon.server.entity.data.CoordEntity;
import com.moon.server.entity.data.DirEntity;
import com.moon.server.entity.data.FmeLogEntity;
import org.apache.ibatis.annotations.Mapper;
import org.springframework.web.bind.annotation.ResponseBody;
 
import java.util.List;
 
@Mapper
@ResponseBody
@SuppressWarnings("ALL")
public interface UploadMapper {
    public List<CoordEntity> selectCoords(String zoning);
 
    public Integer selectCount4Coord(String epsgCode);
 
    public List<DirEntity> selectProject();
 
    public List<FmeLogEntity> selectFmeLog(String parentid);
}