| | |
| | | |
| | | @Override |
| | | public String uploadCarPicture(String id, MultipartFile carPicture) { |
| | | //String url = MinioUtils.putObjectAndGetUrl("sycar",carPicture); |
| | | ArdSyCar ardSyCarr = ardSyCarMapper.selectArdSyCarById(id); |
| | | List<String> objectNames = new ArrayList(); |
| | | if(ardSyCarr.getCarPicture() != null || !ardSyCarr.getCarPicture().equals("")){ |
| | | String objectName = ardSyCarr.getCarPicture().split("/sycar/")[1]; |
| | | objectNames.add(objectName); |
| | | MinioUtils.removeObjects("sycar", objectNames); |
| | | } |
| | | //判断文件是否为空 |
| | | if (null == carPicture || 0 == carPicture.getSize()) { |
| | | return ""; |