feat:增加标注分组

This commit is contained in:
gyb 2026-03-17 08:52:10 +08:00
parent 435ed1c62f
commit 0f0ad750b3
1 changed files with 3 additions and 3 deletions

View File

@ -120,10 +120,10 @@ public class AirlineFileServiceImpl implements IAirlineFileService {
// 直接读取文件内容并上传 // 直接读取文件内容并上传
R<String> fileUrl = remoteFileService.uploadFileByData(UUID.randomUUID().toString(), "waypoints", new String(file.getBytes())); R<String> fileUrl = remoteFileService.uploadFileByData(UUID.randomUUID().toString(), "waypoints", new String(file.getBytes()));
dto.setFileUrl(fileUrl.getData()); dto.setFileUrl(fileUrl.getData());
// TODO 拓恒默认0后续想办法优化成表格破诶 // TODO 拓恒默认0后续想办法优化
String airVendor = "0"; String airVendor = "0";
String airType = "0"; String airType = "1";
String airSubType = "1"; // 默认Fm003的type为1 String airSubType = "0"; // 默认Fm003的type为1
dto.setAirVendor(airVendor); dto.setAirVendor(airVendor);
// 无人机的领域默认为0 // 无人机的领域默认为0
dto.setAirType(String.format("0-%s-%s", airType, airSubType)); dto.setAirType(String.format("0-%s-%s", airType, airSubType));