|
|
|
@ -1,7 +1,10 @@
|
|
|
|
|
package com.air.cityarea.controller; |
|
|
|
|
|
|
|
|
|
import cn.hutool.core.bean.BeanUtil; |
|
|
|
|
import cn.hutool.core.collection.CollectionUtil; |
|
|
|
|
import cn.hutool.core.util.StrUtil; |
|
|
|
|
import com.air.cityarea.entity.RotateGroup; |
|
|
|
|
import com.air.cityarea.service.RotateGroupService; |
|
|
|
|
import com.air.cityarea.vo.RotateImageStatusVo; |
|
|
|
|
import com.air.enums.RotateStatusEnum; |
|
|
|
|
import com.air.utils.FileUtil; |
|
|
|
@ -17,7 +20,12 @@ import lombok.AllArgsConstructor;
|
|
|
|
|
import org.springframework.validation.annotation.Validated; |
|
|
|
|
import org.springframework.web.bind.annotation.*; |
|
|
|
|
|
|
|
|
|
import javax.validation.constraints.NotNull; |
|
|
|
|
import java.util.Collections; |
|
|
|
|
import java.util.HashMap; |
|
|
|
|
import java.util.List; |
|
|
|
|
import java.util.Map; |
|
|
|
|
import java.util.stream.Collectors; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
@ -34,6 +42,8 @@ public class RotateImageController {
|
|
|
|
|
|
|
|
|
|
private final RotateImageService rotateImageService; |
|
|
|
|
|
|
|
|
|
private final RotateGroupService rotateGroupService; |
|
|
|
|
|
|
|
|
|
private final FileUtil fileUtil; |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
@ -50,10 +60,21 @@ public class RotateImageController {
|
|
|
|
|
.eq(image.getGroupId() != null,RotateImage::getGroupId,image.getGroupId()) |
|
|
|
|
.like(StrUtil.isNotEmpty(image.getImageName()),RotateImage::getImageName,image.getImageName()) |
|
|
|
|
.orderByDesc(RotateImage::getCreateDate)); |
|
|
|
|
rotateImagePage.getRecords().stream().forEach(e ->{ |
|
|
|
|
e.setImagePath(fileUtil.getUrlByInnerPath(e.getImagePath())); |
|
|
|
|
e.setStatusName(RotateStatusEnum.getName(e.getStatusCd())); |
|
|
|
|
}); |
|
|
|
|
List<RotateImage> records = rotateImagePage.getRecords(); |
|
|
|
|
if (CollectionUtil.isNotEmpty(records)){ |
|
|
|
|
List<Long> groupIds = records.stream().map(e -> e.getGroupId()).collect(Collectors.toList()); |
|
|
|
|
List<RotateGroup> rotateGroups = rotateGroupService.listByIds(groupIds); |
|
|
|
|
Map<Long, String> map = new HashMap<>(); |
|
|
|
|
rotateGroups.stream().forEach(e ->{ |
|
|
|
|
map.put(e.getGroupId(),e.getGroupName()); |
|
|
|
|
}); |
|
|
|
|
records.stream().forEach(e ->{ |
|
|
|
|
e.setGroupName(map.get(e.getGroupId())); |
|
|
|
|
e.setImagePath(fileUtil.getUrlByInnerPath(e.getImagePath())); |
|
|
|
|
e.setStatusName(RotateStatusEnum.getName(e.getStatusCd())); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
return R.ok(rotateImagePage); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|