文件上传https

This commit is contained in:
chen-xin-zhi 2025-03-23 10:35:33 +08:00
parent 2b8232fb1f
commit cd6700c3e4
2 changed files with 46 additions and 0 deletions

View File

@ -185,6 +185,30 @@ public class AdvanceOrderController {
/**
* 小程序端用户根据id查询订单
* @param commonRequest 订单id
* @return 是否取消成功
*/
@PostMapping ("/get/id")
@Operation(summary = "小程序端用户根据id查询订单", description = "参数订单id权限所有人方法名queryOrderById")
public BaseResponse<AdvanceOrderVO> queryOrderById(@RequestBody CommonRequest commonRequest, HttpServletRequest request) {
if (commonRequest == null || commonRequest.getId() <= 0) {
throw new BusinessException(ErrorCode.PARAMS_ERROR);
}
Long id = commonRequest.getId();
userService.getLoginUser(request);
AdvanceOrder advanceOrder = advanceOrderService.getById(id);
ThrowUtils.throwIf(advanceOrder == null, ErrorCode.OPERATION_ERROR, "订单不存在");
AdvanceOrderVO advanceOrderVO = commonService.copyProperties(advanceOrder, AdvanceOrderVO.class);
return ResultUtils.success(advanceOrderVO);
}
/** /**

View File

@ -246,6 +246,28 @@ public class ClothesRentOrderController {
/**
* 小程序端用户根据id查询服装租赁订单
* @return 是否删除成功
*/
@PostMapping("/get/id")
@Operation(summary = "小程序端用户根据id查询服装租赁订单", description = "参数:无, 权限所有人方法名queryClothesRentOrderById")
public BaseResponse<ClothesRentOrderVO> queryClothesRentOrderById(@RequestBody CommonRequest commonRequest, HttpServletRequest request) {
if (commonRequest == null) {
throw new BusinessException(ErrorCode.PARAMS_ERROR);
}
User loginUser = userService.getLoginUser(request);
Long id = commonRequest.getId();
ClothesRentOrder clothesRentOrder = clothesRentOrderService.getById(id);
ThrowUtils.throwIf(clothesRentOrder == null, ErrorCode.OPERATION_ERROR, "订单不存在");
ClothesRentOrderVO clothesRentOrderVO = commonService.copyProperties(clothesRentOrder, ClothesRentOrderVO.class);
clothesRentOrderVO.setUserName(loginUser.getUserName());
return ResultUtils.success(clothesRentOrderVO);
}
/** /**
* Web端管理员更新服装租赁订单状态 * Web端管理员更新服装租赁订单状态