package com.dji.sample.patches.service; import com.dji.sample.patches.model.entity.LotInfo; import org.springframework.web.multipart.MultipartFile; import java.io.IOException; import java.util.List; public interface ShpToDataSourceService { List insertGeo(MultipartFile file ,String itemId) throws IOException; }