|
|
|
@ -1,5 +1,10 @@
|
|
|
|
|
package com.air.cityarea.controller; |
|
|
|
|
|
|
|
|
|
import cn.hutool.core.bean.BeanUtil; |
|
|
|
|
import cn.hutool.core.util.StrUtil; |
|
|
|
|
import com.air.cityarea.vo.RotateImageStatusVo; |
|
|
|
|
import com.air.enums.RotateStatusEnum; |
|
|
|
|
import com.air.utils.FileUtil; |
|
|
|
|
import com.baomidou.mybatisplus.core.toolkit.Wrappers; |
|
|
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
|
|
|
|
import com.cinderella.framework.common.core.util.R; |
|
|
|
@ -9,8 +14,11 @@ import com.air.cityarea.service.RotateImageService;
|
|
|
|
|
import io.swagger.annotations.Api; |
|
|
|
|
import io.swagger.annotations.ApiOperation; |
|
|
|
|
import lombok.AllArgsConstructor; |
|
|
|
|
import org.springframework.validation.annotation.Validated; |
|
|
|
|
import org.springframework.web.bind.annotation.*; |
|
|
|
|
|
|
|
|
|
import java.util.List; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 轮播图片 |
|
|
|
@ -20,22 +28,33 @@ import org.springframework.web.bind.annotation.*;
|
|
|
|
|
*/ |
|
|
|
|
@RestController |
|
|
|
|
@AllArgsConstructor |
|
|
|
|
@RequestMapping("/rotateimage") |
|
|
|
|
@Api(value = "rotateimage", tags = "轮播图片管理") |
|
|
|
|
@RequestMapping("/rotateImage") |
|
|
|
|
@Api(value = "rotateImage", tags = "轮播图片管理") |
|
|
|
|
public class RotateImageController { |
|
|
|
|
|
|
|
|
|
private final RotateImageService rotateImageService; |
|
|
|
|
|
|
|
|
|
private final FileUtil fileUtil; |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 分页查询 |
|
|
|
|
* @param page 分页对象 |
|
|
|
|
* @param rotateImage 轮播图片 |
|
|
|
|
* @param image 轮播图片 |
|
|
|
|
* @return |
|
|
|
|
*/ |
|
|
|
|
@ApiOperation(value = "分页查询", notes = "分页查询") |
|
|
|
|
@GetMapping("/page") |
|
|
|
|
public R getRotateImagePage(QueryPage page, RotateImage rotateImage) { |
|
|
|
|
return R.ok(rotateImageService.page(page.toPage(), Wrappers.query(rotateImage))); |
|
|
|
|
public R getRotateImagePage(QueryPage page, RotateImage image) { |
|
|
|
|
Page<RotateImage> rotateImagePage = rotateImageService.page(page.toPage(), Wrappers.<RotateImage>query().lambda() |
|
|
|
|
.eq(StrUtil.isNotEmpty(image.getStatusCd()),RotateImage::getStatusCd,image.getStatusCd()) |
|
|
|
|
.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())); |
|
|
|
|
}); |
|
|
|
|
return R.ok(rotateImagePage); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -57,7 +76,7 @@ public class RotateImageController {
|
|
|
|
|
*/ |
|
|
|
|
@ApiOperation(value = "新增轮播图片", notes = "新增轮播图片") |
|
|
|
|
@PostMapping |
|
|
|
|
public R save(@RequestBody RotateImage rotateImage) { |
|
|
|
|
public R save(@RequestBody @Validated RotateImage rotateImage) { |
|
|
|
|
return R.ok(rotateImageService.save(rotateImage)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -68,18 +87,35 @@ public class RotateImageController {
|
|
|
|
|
*/ |
|
|
|
|
@ApiOperation(value = "修改轮播图片", notes = "修改轮播图片") |
|
|
|
|
@PutMapping |
|
|
|
|
public R updateById(@RequestBody RotateImage rotateImage) { |
|
|
|
|
public R updateById(@RequestBody @Validated RotateImage rotateImage) { |
|
|
|
|
if (rotateImage.getId() == null){ |
|
|
|
|
return R.failed("id不能为空"); |
|
|
|
|
} |
|
|
|
|
rotateImage.setImagePath(fileUtil.getInnerPath(rotateImage.getImagePath())); |
|
|
|
|
return R.ok(rotateImageService.updateById(rotateImage)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 修改轮播图状态 |
|
|
|
|
* @param statusVo |
|
|
|
|
* @return R |
|
|
|
|
*/ |
|
|
|
|
@ApiOperation(value = "修改轮播图状态", notes = "修改轮播图状态") |
|
|
|
|
@PutMapping("updateStatus") |
|
|
|
|
public R updateStatus(@RequestBody @Validated RotateImageStatusVo statusVo) { |
|
|
|
|
RotateImage rotateImage = new RotateImage(); |
|
|
|
|
BeanUtil.copyProperties(statusVo,rotateImage); |
|
|
|
|
return R.ok(rotateImageService.updateById(rotateImage)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 通过id删除轮播图片 |
|
|
|
|
* @param id id |
|
|
|
|
* @param ids ids |
|
|
|
|
* @return R |
|
|
|
|
*/ |
|
|
|
|
@ApiOperation(value = "通过id删除轮播图片", notes = "通过id删除轮播图片") |
|
|
|
|
@DeleteMapping("/{id}") |
|
|
|
|
public R removeById(@PathVariable Long id) { |
|
|
|
|
return R.ok(rotateImageService.removeById(id)); |
|
|
|
|
@DeleteMapping("deleteByIds") |
|
|
|
|
public R deleteByIds(@RequestParam List<Long> ids) { |
|
|
|
|
return R.ok(rotateImageService.removeByIds(ids)); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|