管道基础大数据平台系统开发-【后端】-Server
2
13693261870
2023-01-09 c61573b7222a99a69ff381fac53f4af831030830
src/main/java/com/lf/server/mapper/data/UploadMapper.java
@@ -2,6 +2,7 @@
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;
@@ -23,9 +24,25 @@
    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);
}