rain
2024-04-01 35cb086a6e05bf0b6e2a6831330fbcd2c740eba7
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 ,String itemId) throws IOException;
}