| | |
| | | package com.lf.server.mapper.data; |
| | | |
| | | import com.lf.server.entity.data.CoordEntity; |
| | | import com.lf.server.entity.data.DirEntity; |
| | | import com.lf.server.entity.data.FmeLogEntity; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.springframework.web.bind.annotation.ResponseBody; |
| | | |
| | |
| | | * @return |
| | | */ |
| | | public List<CoordEntity> selectCoords(String zoning); |
| | | |
| | | /** |
| | | * 根据EPSG编码统计 |
| | | * |
| | | * @param epsgCode |
| | | * @return |
| | | */ |
| | | public Integer selectCount4Coord(String epsgCode); |
| | | |
| | | /** |
| | | * 查询项目名称 |
| | | * |
| | | * @return |
| | | */ |
| | | public List<DirEntity> selectProject(); |
| | | |
| | | /** |
| | | * 查询FME日志 |
| | | * |
| | | * @param parentid |
| | | * @return |
| | | */ |
| | | public List<FmeLogEntity> selectFmeLog(String parentid); |
| | | } |