| | |
| | | private GetPatchesMapper patchesMapper; |
| | | @Autowired |
| | | private IDeviceDictionaryService deviceDictionaryService; |
| | | |
| | | @Autowired |
| | | private OssServiceContext ossService; |
| | | |
| | |
| | | } |
| | | |
| | | @Override |
| | | public Object mediaInfo(String fileId) { |
| | | public Object mediaInfo(String filename) { |
| | | String name= "mark"+filename; |
| | | MediaFileMarkEntity entity = markMapper.selectOne(new LambdaQueryWrapper<MediaFileMarkEntity>() |
| | | .eq(MediaFileMarkEntity::getFileId, fileId)); |
| | | .eq(MediaFileMarkEntity::getFileName, name)); |
| | | |
| | | return entity.getDronedata(); |
| | | } |
| | | |