更新了写真预约产品的删除校验

This commit is contained in:
chen-xin-zhi 2025-03-16 18:54:26 +08:00
parent fc96fd4d3e
commit 691b4e362c
12 changed files with 173 additions and 142 deletions

View File

@ -5,11 +5,6 @@ public interface FileConstant {
/**
* 服务器访问地址
*/
String SERVER_HOST = "/static/img";
String SERVER_HOST = "http://123.249.108.160:8888/api/file/downloadFile?objectKey=";
/**
* 服务器上传路径
*/
String SERVER_UPLOAD_DIR = "D:\\匠承非遗文件上传\\img";
}

View File

@ -10,6 +10,7 @@ import com.cultural.heritage.annotation.AuthCheck;
import com.cultural.heritage.common.BaseResponse;
import com.cultural.heritage.common.ErrorCode;
import com.cultural.heritage.common.ResultUtils;
import com.cultural.heritage.constant.FileConstant;
import com.cultural.heritage.constant.OrderStatusConstant;
import com.cultural.heritage.constant.UserConstant;
import com.cultural.heritage.exception.BusinessException;
@ -287,6 +288,8 @@ public class PhotoProductsController {
PhotoProductsVO photoProductsVO = new PhotoProductsVO();
BeanUtils.copyProperties(photoProducts, photoProductsVO);
// TODO
photoProductsVO.setIntroImg(FileConstant.SERVER_HOST + photoProducts.getIntroImg());
photoProductsVO.setBookingDateVOList(bookingDateVOList);
photoProductsVOList.add(photoProductsVO);
}
@ -396,6 +399,8 @@ public class PhotoProductsController {
// 封装成BookingPhotoProductsVO列表
PhotoProductsVO photoProductsVO = new PhotoProductsVO();
BeanUtils.copyProperties(photoProducts, photoProductsVO);
// TODO
photoProductsVO.setIntroImg(FileConstant.SERVER_HOST + photoProductsVO.getIntroImg());
photoProductsVO.setBookingDateVOList(bookingDateVOList);
return ResultUtils.success(photoProductsVO);

View File

@ -36,114 +36,7 @@ public class FileController {
@Resource
private IHweiYunOBSService iHweiYunOBSService;
//
// /**
// * 未登录的情况下的文件上传
// *
// * @param multipartFile 文件上传参数
// * @param uploadFileRequest 文件业务类型请求体
// * @return 图片可访问地址
// */
// @PostMapping("/upload/server/not_login")
// @Operation(summary = "(未使用)未登录情况下的文件上传", description = "参数:(文档上是false但biz是必传的)文件对象multipartFile), 业务类型(biz)权限所有人方法名uploadServerFileNotLogin")
// private BaseResponse<String> uploadServerFileNotLogin(@RequestPart("file") MultipartFile multipartFile, UploadFileRequest uploadFileRequest) {
// // 获取业务名称
// String biz = uploadFileRequest.getBiz();
// FileUploadBizEnum fileUploadBizEnum = FileUploadBizEnum.getEnumByValue(biz);
// if (fileUploadBizEnum == null) {
// throw new BusinessException(ErrorCode.PARAMS_ERROR, "业务名称错误");
// }
// // 校验文件
// validFile(multipartFile, fileUploadBizEnum);
// // 文件目录根据业务用户来划分
// String uuid = RandomStringUtils.randomAlphabetic(8);
// String filename = uuid + "-" + multipartFile.getOriginalFilename();
// String filepath = String.format("/%s/%s/%s", fileUploadBizEnum.getValue(), 0, filename);
//
// // 判断目录是否存在
// File file = new File(FileConstant.SERVER_UPLOAD_DIR, filepath);
// if (!file.exists()) {
// // 创建目录
// boolean mkdirs = file.mkdirs();
// if (!mkdirs) {
// throw new BusinessException(ErrorCode.SYSTEM_ERROR, "创建目录失败");
// }
// }
// // 返回可访问地址
// String url = iHweiYunOBSService.fileUpload(multipartFile, "feiyi" + filepath);
// return ResultUtils.success(url);
// }
//
//
// @PostMapping("/upload/server")
// @Operation(summary = "已登录情况下的文件上传", description = "参数:(文档上是false但biz是必传的)文件对象multipartFile), 业务类型(biz)权限所有人方法名uploadServerFile")
// public BaseResponse<String> uploadServerFile(@RequestPart("file") MultipartFile multipartFile, UploadFileRequest uploadFileRequest, HttpServletRequest request) {
// // 获取业务名称
// String biz = uploadFileRequest.getBiz();
// FileUploadBizEnum fileUploadBizEnum = FileUploadBizEnum.getEnumByValue(biz);
// if (fileUploadBizEnum == null) {
// throw new BusinessException(ErrorCode.PARAMS_ERROR, "业务名称错误");
// }
// // 校验文件
// validFile(multipartFile, fileUploadBizEnum);
// // 校验用户是否登录
// User loginUser = userService.getLoginUser(request);
// if (loginUser == null) {
// throw new BusinessException(ErrorCode.NOT_LOGIN_ERROR, "未登录");
// }
// // 文件目录根据业务用户来划分
// String uuid = RandomStringUtils.randomAlphabetic(8);
// String filename = uuid + "-" + multipartFile.getOriginalFilename();
// String filepath = String.format("/%s/%s/%s", fileUploadBizEnum.getValue(), loginUser.getId(), filename);
//
// // 判断目录是否存在
// File file = new File(FileConstant.SERVER_UPLOAD_DIR, filepath);
// if (!file.exists()) {
// // 创建目录
// boolean mkdirs = file.mkdirs();
// if (!mkdirs) {
// throw new BusinessException(ErrorCode.SYSTEM_ERROR, "创建目录失败");
// }
// }
// // 返回可访问地址
// String url = iHweiYunOBSService.fileUpload(multipartFile, "feiyi" + filepath);
// return ResultUtils.success(url);
// }
//
//
// @PostMapping("/upload/single")
// @Operation(summary = "单独文件上传", description = "参数file文件对象multipartFile)权限所有人方法名uploadServerFile")
// public Object uploadSingleServerFile(@RequestPart("file") MultipartFile multipartFile, HttpServletRequest request) {
////
// // 校验文件
// validFile(multipartFile, null);
// // 文件目录根据业务用户来划分
// String uuid = RandomStringUtils.randomAlphabetic(8);
// String filename = uuid + "-" + multipartFile.getOriginalFilename();
// String filepath = String.format("/%s/%s/%s", "single", "yt", filename);
//
// // 判断目录是否存在
// File file = new File(FileConstant.SERVER_UPLOAD_DIR, filepath);
// if (!file.exists()) {
// // 创建目录
// boolean mkdirs = file.mkdirs();
// if (!mkdirs) {
// throw new BusinessException(ErrorCode.SYSTEM_ERROR, "创建目录失败");
// }
// }
// // 返回可访问地址
// String url = iHweiYunOBSService.fileUpload(multipartFile, "feiyi" + filepath);
//
// Map<String, String> data = new HashMap<>();
// data.put("url", url);
//
// // 创建最终地响应对象
// Map<String, Object> response = new HashMap<>();
// response.put("errno", 0);
// response.put("data", data);
// Gson gson = new Gson();
// return gson.fromJson(gson.toJson(response), Object.class);
// }
/**
@ -153,7 +46,7 @@ public class FileController {
* @return PutObjectResult
*/
@PostMapping("/uploadFile")
@Operation(summary = "Web端文件上传", description = "参数文件对象multipartFile), 业务类型(biz),权限:所有人方法名uploadFile")
@Operation(summary = "Web端文件上传", description = "参数文件对象multipartFile), 业务类型(biz),权限:管理员方法名uploadFile")
public BaseResponse<String> uploadFile(@RequestPart("file") MultipartFile multipartFile, UploadFileRequest uploadFileRequest, HttpServletRequest request) {
// 校验用户是否登录
User loginUser = userService.getLoginUser(request);
@ -164,7 +57,7 @@ public class FileController {
iHweiYunOBSService.fileUpload(multipartFile, filePath);
return ResultUtils.success(filePath, "上传成功返回给前端filePath前端需存储");
return ResultUtils.success(filePath, "上传成功");
}
@ -174,6 +67,7 @@ public class FileController {
* @param objectKey 具体的文件名含存储路径
*/
@GetMapping("downloadFile")
@Operation(summary = "文件下载", description = "参数:文件对象(具体的文件名(含存储路径))权限所有人方法名downloadFile")
public void downloadFile(@RequestParam String objectKey, HttpServletResponse response) {
iHweiYunOBSService.downloadFile(objectKey, response);
}
@ -232,6 +126,6 @@ public class FileController {
// 文件目录根据业务用户来划分
String uuid = RandomStringUtils.randomAlphabetic(8);
String filename = uuid + "-" + multipartFile.getOriginalFilename();
return String.format("/%s/%s", fileUploadBizEnum.getValue(), filename);
return String.format("%s/%s", fileUploadBizEnum.getValue(), filename);
}
}

View File

@ -7,6 +7,7 @@ import com.cultural.heritage.annotation.AuthCheck;
import com.cultural.heritage.common.BaseResponse;
import com.cultural.heritage.common.ErrorCode;
import com.cultural.heritage.common.ResultUtils;
import com.cultural.heritage.constant.FileConstant;
import com.cultural.heritage.constant.UserConstant;
import com.cultural.heritage.exception.BusinessException;
import com.cultural.heritage.exception.ThrowUtils;
@ -192,6 +193,10 @@ public class CategoryController {
public BaseResponse<List<Category>> listCategoryOnWeb(HttpServletRequest request) {
userService.getLoginUser(request);
List<Category> list = categoryService.list();
// TODO
for (Category category : list) {
category.setTypeUrl(FileConstant.SERVER_HOST + category.getTypeUrl());
}
return ResultUtils.success(list);
}
@ -210,6 +215,10 @@ public class CategoryController {
List<Good> goodList = commonService.findByFieldEqTargetField("isShelves", 1, goodService);
// 获取所有存在上架商品的商品类别
List<Category> categoryList = commonService.findByFieldInTargetField(goodList, categoryService, Good::getType, "typeName");
// TODO
for (Category category : categoryList) {
category.setTypeUrl(FileConstant.SERVER_HOST + category.getTypeUrl());
}
return ResultUtils.success(categoryList);
}
@ -238,6 +247,10 @@ public class CategoryController {
queryWrapper.eq("isShelves", 1);
queryWrapper.orderByDesc("id");
List<Good> goodList = goodService.list(queryWrapper);
// TODO
for (Good good : goodList) {
good.setGoodImg(FileConstant.SERVER_HOST + good.getGoodImg());
}
Map<Long, List<Good>> map = new HashMap<>();
map.put(id, goodList);
return ResultUtils.success(map);

View File

@ -5,6 +5,7 @@ import com.cultural.heritage.annotation.AuthCheck;
import com.cultural.heritage.common.BaseResponse;
import com.cultural.heritage.common.ErrorCode;
import com.cultural.heritage.common.ResultUtils;
import com.cultural.heritage.constant.FileConstant;
import com.cultural.heritage.constant.UserConstant;
import com.cultural.heritage.exception.BusinessException;
import com.cultural.heritage.model.entity.Festival;
@ -72,7 +73,9 @@ public class FestivalController {
// 遍历查找匹配的节日
for (Festival festival : festivalList) {
if (festival.getName().equals(festivalName)) {
return ResultUtils.success(festival.getUrl()); // 返回对应的 URL
// TODO
String wholeFilePath = FileConstant.SERVER_HOST + festival.getUrl();
return ResultUtils.success(wholeFilePath); // 返回对应的 URL
}
}
throw new BusinessException(ErrorCode.OPERATION_ERROR, "该节日项不存在");
@ -89,6 +92,10 @@ public class FestivalController {
@AuthCheck(mustRole = UserConstant.ADMIN_ROLE)
public BaseResponse<List<Festival>> getFestivalList() {
List<Festival> festivalList = redisTemplate.opsForList().range(FESTIVAL_KEY, 0, -1);
// TODO
for (Festival festival : festivalList) {
festival.setUrl(FileConstant.SERVER_HOST + festival.getUrl());
}
return ResultUtils.success(festivalList);
}

View File

@ -12,6 +12,7 @@ import com.cultural.heritage.annotation.AuthCheck;
import com.cultural.heritage.common.BaseResponse;
import com.cultural.heritage.common.ErrorCode;
import com.cultural.heritage.common.ResultUtils;
import com.cultural.heritage.constant.FileConstant;
import com.cultural.heritage.constant.UserConstant;
import com.cultural.heritage.exception.BusinessException;
import com.cultural.heritage.exception.ThrowUtils;
@ -409,6 +410,15 @@ public class GoodController {
QueryWrapper<Good> goodQueryWrapper = goodService.getGoodQueryWrapper(goodQueryRequest, false);
Page<Good> page = goodService.page(new Page<>(current, pageSize), goodQueryWrapper);
List<Good> records = page.getRecords();
// TODO
for (Good good : records) {
String[] goodImgArr = good.getGoodImg().split(";");
for (int i = 0; i < goodImgArr.length; i++) {
goodImgArr[i] = FileConstant.SERVER_HOST + goodImgArr[i];
}
String joinImg = String.join(";", goodImgArr);
good.setGoodImg(joinImg);
}
List<GoodPageVO> goodPageVOS = commonService.convertList(records, GoodPageVO.class);
Page<GoodPageVO> goodPageVOPage = new Page<>();
goodPageVOPage.setRecords(goodPageVOS);
@ -459,8 +469,15 @@ public class GoodController {
Long id = getByIdRequest.getId();
Good good = goodService.getById(id);
ThrowUtils.throwIf(good == null, ErrorCode.OPERATION_ERROR, "商品不存在");
// TODO
String[] goodImgArr = good.getGoodImg().split(";");
for (int i = 0; i < goodImgArr.length; i++) {
goodImgArr[i] = FileConstant.SERVER_HOST + goodImgArr[i];
}
String joinImg = String.join(";", goodImgArr);
good.setGoodImg(joinImg);
good.setRichText(DecoderUtils.decodeText(good.getRichText()));
System.out.println(good.getRichText());
GoodPageVO goodPageVO = new GoodPageVO();
BeanUtils.copyProperties(good, goodPageVO);
return ResultUtils.success(goodPageVO);
@ -489,6 +506,10 @@ public class GoodController {
QueryWrapper<Good> goodQueryWrapper = goodService.getGoodQueryWrapper(goodQueryRequest, true);
Page<Good> page = goodService.page(new Page<>(current, pageSize), goodQueryWrapper);
List<Good> records = page.getRecords();
// TODO
for (Good good : records) {
good.setGoodImg(FileConstant.SERVER_HOST + good.getGoodImg());
}
// 获取联表(预约日期表, 预约时间段表)查询结果
List<AppointmentDateTimePeriodVO> appointmentDateTimePeriodVOS = appointmentDateService.queryAppointmentDateDetail();
@ -583,6 +604,8 @@ public class GoodController {
Long id = commonRequest.getId();
Good good = goodService.getById(id);
ThrowUtils.throwIf(good == null, ErrorCode.NOT_FOUND_ERROR, "商品不存在");
// TODO
good.setGoodImg(FileConstant.SERVER_HOST + good.getGoodImg());
ServiceGoodVO serviceGoodVO = new ServiceGoodVO();
BeanUtils.copyProperties(good, serviceGoodVO);
Long goodVOId = serviceGoodVO.getId();
@ -683,6 +706,10 @@ public class GoodController {
conditionMap.put("isGoodType", 0);
List<Good> goodList = commonService.findByFieldEqTargetFields(conditionMap, goodService);
goodList = goodList.stream().filter(good -> good.getName().contains(keyword)).toList();
// TODO
for (Good good : goodList) {
good.setGoodImg(FileConstant.SERVER_HOST + good.getGoodImg());
}
List<ServiceGoodCardVO> serviceGoodCardVOS = commonService.convertList(goodList, ServiceGoodCardVO.class);
return ResultUtils.success(serviceGoodCardVOS);
}
@ -718,6 +745,15 @@ public class GoodController {
}
return false;
}).toList();
for (Good good : goodList) {
// TODO
String[] goodImgArr = good.getGoodImg().split(";");
for (int i = 0; i < goodImgArr.length; i++) {
goodImgArr[i] = FileConstant.SERVER_HOST + goodImgArr[i];
}
String joinImg = String.join(";", goodImgArr);
good.setGoodImg(joinImg);
}
List<ServiceGoodCardVO> serviceGoodCardVOS = commonService.convertList(goodList, ServiceGoodCardVO.class);
return ResultUtils.success(serviceGoodCardVOS);
}
@ -740,6 +776,10 @@ public class GoodController {
map.put("isGoodType", 0);
map.put("isShelves", 1);
List<Good> goodList = commonService.findByFieldEqTargetFields(map, goodService);
// TODO
for (Good good : goodList) {
good.setGoodImg(FileConstant.SERVER_HOST + good.getGoodImg());
}
List<ServiceGoodCardVO> serviceGoodCardVOS = commonService.convertList(goodList, ServiceGoodCardVO.class);
return ResultUtils.success(serviceGoodCardVOS);
}

View File

@ -9,6 +9,7 @@ import com.cultural.heritage.annotation.AuthCheck;
import com.cultural.heritage.common.BaseResponse;
import com.cultural.heritage.common.ErrorCode;
import com.cultural.heritage.common.ResultUtils;
import com.cultural.heritage.constant.FileConstant;
import com.cultural.heritage.constant.OrderStatusConstant;
import com.cultural.heritage.constant.UserConstant;
import com.cultural.heritage.exception.BusinessException;
@ -211,6 +212,12 @@ public class AdvanceOrderController {
// 封装成写真预约订单VO
List<AdvanceOrder> records = page.getRecords();
List<AdvanceOrderVO> advanceOrderVOS = commonService.convertList(records, AdvanceOrderVO.class);
// TODO
for (AdvanceOrderVO advanceOrderVO : advanceOrderVOS) {
PhotoProductsSnapshot photoProductsSnapshot = advanceOrderVO.getPhotoProductsSnapshot();
photoProductsSnapshot.setIntroImg(FileConstant.SERVER_HOST + photoProductsSnapshot.getIntroImg());
advanceOrderVO.setPhotoProductsSnapshot(photoProductsSnapshot);
}
Page<AdvanceOrderVO> voPage = new Page<>();
voPage.setRecords(advanceOrderVOS);
voPage.setTotal(page.getTotal());
@ -235,6 +242,12 @@ public class AdvanceOrderController {
QueryWrapper<AdvanceOrder> queryWrapper = new QueryWrapper<>();
queryWrapper.eq("userId", userId);
List<AdvanceOrder> advanceOrderList = advanceOrderService.list(queryWrapper);
// TODO
for (AdvanceOrder advanceOrder : advanceOrderList) {
PhotoProductsSnapshot photoProductsSnapshot = advanceOrder.getPhotoProductsSnapshot();
photoProductsSnapshot.setIntroImg(FileConstant.SERVER_HOST + photoProductsSnapshot.getIntroImg());
advanceOrder.setPhotoProductsSnapshot(photoProductsSnapshot);
}
// 封装成写真预约订单VO
List<AdvanceOrderVO> advanceOrderVOS = commonService.convertList(advanceOrderList, AdvanceOrderVO.class);
Collections.reverse(advanceOrderVOS);

View File

@ -7,6 +7,7 @@ import com.cultural.heritage.annotation.AuthCheck;
import com.cultural.heritage.common.BaseResponse;
import com.cultural.heritage.common.ErrorCode;
import com.cultural.heritage.common.ResultUtils;
import com.cultural.heritage.constant.FileConstant;
import com.cultural.heritage.constant.OrderStatusConstant;
import com.cultural.heritage.constant.UserConstant;
import com.cultural.heritage.exception.BusinessException;
@ -255,6 +256,28 @@ public class OrderController {
orderVO.setOrderItemList(orderItemsTempList);
}
// TODO
for (OrderVO orderVO : orderVOS) {
boolean isGeneral = orderService.isGeneralGood(orderVO.getOrderType());
List<OrderItems> orderItemList = orderVO.getOrderItemList();
for (OrderItems orderItems : orderItemList) {
GoodSnapshot goodSnapshot = orderItems.getGoodSnapshot();
String goodImg = goodSnapshot.getGoodImg();
if (isGeneral) {
String[] goodImgArr = goodImg.split(";");
for (int i = 0; i < goodImgArr.length; i++) {
goodImgArr[i] = FileConstant.SERVER_HOST + goodImgArr[i];
}
String joinImg = String.join(";", goodImgArr);
goodSnapshot.setGoodImg(joinImg);
} else {
goodSnapshot.setGoodImg(FileConstant.SERVER_HOST + goodSnapshot.getGoodImg());
}
orderItems.setGoodSnapshot(goodSnapshot);
}
orderVO.setOrderItemList(orderItemList);
}
Page<OrderVO> orderVOPage = new Page<>();
orderVOPage.setRecords(orderVOS);
@ -309,6 +332,28 @@ public class OrderController {
orderVO.setOrderItemList(orderItemsList);
return orderVO;
}).toList();
// TODO
for (OrderVO orderVO : orderVOS) {
boolean isGeneral = orderService.isGeneralGood(orderVO.getOrderType());
List<OrderItems> orderItemList = orderVO.getOrderItemList();
for (OrderItems orderItems : orderItemList) {
GoodSnapshot goodSnapshot = orderItems.getGoodSnapshot();
String goodImg = goodSnapshot.getGoodImg();
if (isGeneral) {
String[] goodImgArr = goodImg.split(";");
for (int i = 0; i < goodImgArr.length; i++) {
goodImgArr[i] = FileConstant.SERVER_HOST + goodImgArr[i];
}
String joinImg = String.join(";", goodImgArr);
goodSnapshot.setGoodImg(joinImg);
} else {
goodSnapshot.setGoodImg(FileConstant.SERVER_HOST + goodSnapshot.getGoodImg());
}
orderItems.setGoodSnapshot(goodSnapshot);
}
orderVO.setOrderItemList(orderItemList);
}
return ResultUtils.success(orderVOS);
}
@ -356,6 +401,26 @@ public class OrderController {
BeanUtils.copyProperties(order, orderVO);
List<OrderItems> orderItemsList = commonService.findByFieldEqTargetField("orderId", orderId, orderItemService);
orderVO.setOrderItemList(orderItemsList);
// TODO
boolean isGeneral = orderService.isGeneralGood(orderVO.getOrderType());
List<OrderItems> orderItemList = orderVO.getOrderItemList();
for (OrderItems orderItems : orderItemList) {
GoodSnapshot goodSnapshot = orderItems.getGoodSnapshot();
String goodImg = goodSnapshot.getGoodImg();
if (isGeneral) {
String[] goodImgArr = goodImg.split(";");
for (int i = 0; i < goodImgArr.length; i++) {
goodImgArr[i] = FileConstant.SERVER_HOST + goodImgArr[i];
}
String joinImg = String.join(";", goodImgArr);
goodSnapshot.setGoodImg(joinImg);
} else {
goodSnapshot.setGoodImg(FileConstant.SERVER_HOST + goodSnapshot.getGoodImg());
}
orderItems.setGoodSnapshot(goodSnapshot);
}
orderVO.setOrderItemList(orderItemList);
return ResultUtils.success(orderVO);
}

View File

@ -7,6 +7,7 @@ import com.cultural.heritage.annotation.AuthCheck;
import com.cultural.heritage.common.BaseResponse;
import com.cultural.heritage.common.ErrorCode;
import com.cultural.heritage.common.ResultUtils;
import com.cultural.heritage.constant.FileConstant;
import com.cultural.heritage.constant.OrderStatusConstant;
import com.cultural.heritage.constant.UserConstant;
import com.cultural.heritage.exception.BusinessException;
@ -79,7 +80,6 @@ public class PendingServiceGoodController {
List<PendingServiceGood> pendingServiceGoodList = pendingServiceGoodService.list(queryWrapper);
// 获取服务类待处理订单
List<PendingServiceOrder> pendingServiceOrderList = commonService.findByFieldInTargetField(pendingServiceGoodList, pendingServiceOrderService, PendingServiceGood::getId, "pendingId");
// 封装成服务类待处理订单VO
List<PendingServiceOrderVO> pendingServiceOrderVOS = commonService.convertList(pendingServiceOrderList, PendingServiceOrderVO.class);
// 封装map集合服务类商品待处理id待处理服务类订单列表
@ -96,6 +96,8 @@ public class PendingServiceGoodController {
List<PendingServiceGoodVO> pendingServiceGoodVOList = new ArrayList<>();
for (PendingServiceGood pendingServiceGood : pendingServiceGoodList) {
// TODO
pendingServiceGood.setGoodImg(FileConstant.SERVER_HOST + pendingServiceGood.getGoodImg());
PendingServiceGoodVO pendingServiceGoodVO = new PendingServiceGoodVO();
BeanUtils.copyProperties(pendingServiceGood, pendingServiceGoodVO);
Long goodId = pendingServiceGood.getId();

View File

@ -10,6 +10,7 @@ import com.cultural.heritage.common.BaseResponse;
import com.cultural.heritage.common.ErrorCode;
import com.cultural.heritage.common.ResultUtils;
import com.cultural.heritage.config.WxOpenConfig;
import com.cultural.heritage.constant.FileConstant;
import com.cultural.heritage.constant.UserConstant;
import com.cultural.heritage.exception.BusinessException;
import com.cultural.heritage.exception.ThrowUtils;
@ -263,24 +264,6 @@ public class UserController {
/**
* 根据 id 获取用户
* @param id
* @return 用户信息
*/
@GetMapping("/get")
@Operation(summary = "(未使用)Web端管理员根据id获取用户信息", description = "参数用户id, 权限:管理员(admin, boss), 方法名getUserById")
@AuthCheck(mustRole = UserConstant.ADMIN_ROLE)
public BaseResponse<User> getUserById(long id) {
if (id <= 0) {
throw new BusinessException(ErrorCode.PARAMS_ERROR);
}
User user = userService.getById(id);
ThrowUtils.throwIf(user == null, ErrorCode.NOT_FOUND_ERROR);
return ResultUtils.success(user);
}
/**
* 获取用户数量
*/
@ -309,6 +292,12 @@ public class UserController {
long pageSize = userQueryRequest.getPageSize();
QueryWrapper<User> queryWrapper = userService.getQueryWrapper(userQueryRequest);
Page<User> page = userService.page(new Page<>(current, pageSize), queryWrapper);
List<User> userList = page.getRecords();
// TODO
for (User user : userList) {
user.setUserAvatar(FileConstant.SERVER_HOST + user.getUserAvatar());
}
page.setRecords(userList);
return ResultUtils.success(page);
}
@ -329,14 +318,16 @@ public class UserController {
}
long current = userQueryRequest.getCurrent();
long pageSize = userQueryRequest.getPageSize();
// ThrowUtils.throwIf(size > 20, ErrorCode.PARAMS_ERROR);
QueryWrapper<User> queryWrapper = userService.getQueryWrapper(userQueryRequest);
Page<User> userPage = userService.page(new Page<>(current, pageSize), queryWrapper);
Page<UserVO> userVOPage = new Page<>(current, pageSize, userPage.getTotal());
List<UserVO> userVO = userService.getUserVO(userPage.getRecords());
userVOPage.setRecords(userVO);
List<UserVO> userVOS = userService.getUserVO(userPage.getRecords());
// TODO
for (UserVO userVO : userVOS) {
userVO.setUserAvatar(FileConstant.SERVER_HOST + userVO);
}
userVOPage.setRecords(userVOS);
return ResultUtils.success(userVOPage);
}

View File

@ -4,6 +4,7 @@ import cn.hutool.core.date.DateUtil;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.cultural.heritage.common.ErrorCode;
import com.cultural.heritage.constant.FileConstant;
import com.cultural.heritage.exception.BusinessException;
import com.cultural.heritage.exception.ThrowUtils;
import com.cultural.heritage.mapper.CartExperienceMapper;
@ -134,6 +135,8 @@ public class CartExperienceServiceImpl extends ServiceImpl<CartExperienceMapper,
BeanUtils.copyProperties(good, cartExperienceGoodVO);
cartExperienceVO.setCartExperienceGoodVO(cartExperienceGoodVO);
// TODO
cartExperienceGoodVO.setGoodImg(FileConstant.SERVER_HOST + cartExperienceGoodVO.getGoodImg());
return cartExperienceVO;
}).toList();
}

View File

@ -3,6 +3,7 @@ package com.cultural.heritage.service.good.impl;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.cultural.heritage.common.ErrorCode;
import com.cultural.heritage.constant.FileConstant;
import com.cultural.heritage.exception.BusinessException;
import com.cultural.heritage.exception.ThrowUtils;
import com.cultural.heritage.mapper.CartRecordMapper;
@ -113,6 +114,8 @@ public class CartRecordServiceImpl extends ServiceImpl<CartRecordMapper, CartRec
Good good = map.get(goodId);
CartGoodVO goodVO = new CartGoodVO();
BeanUtils.copyProperties(good, goodVO);
// TODO
goodVO.setGoodImg(FileConstant.SERVER_HOST + goodVO.getGoodImg());
cartRecordVO.setCartGoodVO(goodVO);
return cartRecordVO;
}).toList();