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;
|
|
/**
|
* 数据上传
|
* @author WWW
|
*/
|
@Mapper
|
@ResponseBody
|
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);
|
}
|