This commit is contained in:
admin
2024-06-10 00:36:41 +08:00
parent 16f3bda85a
commit 75fb44343b
5 changed files with 21 additions and 18 deletions

View File

@@ -21,6 +21,7 @@ import org.springframework.validation.annotation.Validated;
import org.springframework.web.bind.annotation.*;
import javax.annotation.Resource;
import java.time.LocalDateTime;
/**
* 订单处理
@@ -73,6 +74,7 @@ public class WxOrderInfoController {
orderContinueInfoEntity.setReviewedRequired("1");
orderContinueInfoEntity.setReviewedState("0");
orderContinueInfoEntity.setImages(vo.getImages());
orderContinueInfoEntity.setContinueTime(LocalDateTime.now());
playOrderContinueInfoService.create(orderContinueInfoEntity);
return R.ok("下单成功");
}
@@ -93,7 +95,7 @@ public class WxOrderInfoController {
/**
* 店员查询随机单详情
*
* @param vo 随机单列表查询对象
* @param id 订单ID
* @return 订单列表
*/
@ClerkUserLogin
@@ -121,7 +123,6 @@ public class WxOrderInfoController {
/**
* 顾客查询最新打赏动态
*
* @param vo 打赏动态查询列表
* @return 打赏动态列表
*/