文件上传https
This commit is contained in:
parent
6c4037b685
commit
f84b396b80
|
@ -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);
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -59,6 +59,13 @@ public class ClothesRentOrderVO implements Serializable {
|
|||
*/
|
||||
private BigDecimal totalAmount;
|
||||
|
||||
|
||||
/**
|
||||
* 取货时间
|
||||
*/
|
||||
private String pickupTime;
|
||||
|
||||
|
||||
/**
|
||||
* 订单创建时间
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue
Block a user