Commit 6bcb4ed6 authored by wdy's avatar wdy

Merge branch 'wangdingyi' into 'dev'

车企文件添加

See merge request !395
parents 66cda2a3 bdbc4524
......@@ -195,14 +195,16 @@ public class ReviewEnterpriseArchiveServiceImpl extends ServiceImpl<ReviewEnterp
ReviewEnterpriseArchive reviewEnterpriseArchive = reviewEnterpriseArchiveMapper.selectById(request.getId());
// 按逗号拆分字符串
String[] photoUrls = reviewEnterpriseArchive.getPhoto().split(",");
String[] photoNames = reviewEnterpriseArchive.getPhotoName().split(",");
// 将拆分后的字符串配对创建AttachmentsVO对象,并加入到List中
List<AttachmentsVO> attachmentsVOList = new ArrayList<>();
for (int i = 0; i < photoUrls.length; i++) {
AttachmentsVO vo = new AttachmentsVO(photoUrls[i], photoNames[i]);
attachmentsVOList.add(vo);
if (reviewEnterpriseArchive.getPhoto() != null && reviewEnterpriseArchive.getPhotoName() != null) {
String[] photoUrls = reviewEnterpriseArchive.getPhoto().split(",");
String[] photoNames = reviewEnterpriseArchive.getPhotoName().split(",");
for (int i = 0; i < photoUrls.length; i++) {
AttachmentsVO vo = new AttachmentsVO(photoUrls[i], photoNames[i]);
attachmentsVOList.add(vo);
}
}
reviewEnterpriseArchive.setUrl(attachmentsVOList);
return reviewEnterpriseArchive;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment