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);
|
}
|