文件上传https

This commit is contained in:
chen-xin-zhi 2025-03-22 15:28:48 +08:00
parent 6c4037b685
commit f84b396b80
3 changed files with 17 additions and 2 deletions

View File

@ -1,6 +1,7 @@
package com.cultural.heritage.controller.order;
import cn.hutool.core.date.DateUtil;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.core.conditions.update.UpdateWrapper;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
@ -264,6 +265,7 @@ public class ClothesRentOrderController {
UpdateWrapper<ClothesRentOrder> updateWrapper = new UpdateWrapper<>();
updateWrapper.eq("id", id);
updateWrapper.set("orderStatus", orderStatus);
if (orderStatus.equals(OrderStatusConstant.PENDING_DELIVERY)) updateWrapper.set("pickupTime", DateUtil.now());
boolean result = clothesRentOrderService.update(updateWrapper);
ThrowUtils.throwIf(!result, ErrorCode.OPERATION_ERROR, "订单状态不存在或订单状态更新失败");
@ -275,6 +277,4 @@ public class ClothesRentOrderController {
return ResultUtils.success(true);
}
}

View File

@ -65,6 +65,13 @@ public class ClothesRentOrder implements Serializable {
*/
private BigDecimal totalAmount;
/**
* 取货时间
*/
private String pickupTime;
/**
* 创建时间
*/
@ -80,6 +87,7 @@ public class ClothesRentOrder implements Serializable {
*/
private Integer isDelete;
@Serial
private static final long serialVersionUID = 1L;
}

View File

@ -59,6 +59,13 @@ public class ClothesRentOrderVO implements Serializable {
*/
private BigDecimal totalAmount;
/**
* 取货时间
*/
private String pickupTime;
/**
* 订单创建时间
*/