| | |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 数据上传 |
| | | * @author WWW |
| | | */ |
| | | @Mapper |
| | | @ResponseBody |
| | | @SuppressWarnings("ALL") |
| | | public interface UploadMapper { |
| | | /** |
| | | * 查询坐标系 |
| | | * |
| | | * @param zoning |
| | | * @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); |
| | | } |