| | |
| | | import com.dji.sample.patches.model.entity.LotInfo; |
| | | import com.dji.sample.territory.model.entity.TbDkjbxxEntity; |
| | | import com.dji.sample.territory.model.entity.TbFjEntity; |
| | | import com.dji.sample.territory.model.entity.param.UploadUrlParam; |
| | | import org.springframework.web.multipart.MultipartFile; |
| | | |
| | | import java.io.IOException; |
| | |
| | | * @DATE: 2024/4/10 11:19 |
| | | */ |
| | | public interface ITbDkjbxxService extends IService<TbDkjbxxEntity> { |
| | | // /** |
| | | // * 上传DB文件并覆盖之前DB文件,自动读取数据到本地数据库 |
| | | // * |
| | | // * @param file |
| | | // * @return |
| | | // */ |
| | | // ResponseResult<String> uploadFile(MultipartFile file); |
| | | |
| | | /** |
| | | * 上传DB文件并覆盖之前DB文件,自动读取数据到本地数据库 |
| | | * |
| | | * @param file |
| | | * @return |
| | | */ |
| | | ResponseResult uploadFile(MultipartFile file); |
| | | |
| | | MultipartFile listFile(String workspaceId, String waylineName, double airportLat, double airportLon) throws IOException; |
| | | |
| | | ResponseResult uploadUrl(String url,String taskName); |
| | | |
| | | } |