rain
2024-03-28 a83ae77a98e235cdca07a1bb167a9a43479a2c9a
1
2
3
4
5
6
7
8
9
10
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<LotInfo> insertGeo(MultipartFile file) throws IOException;
}