|
@@ -2,6 +2,7 @@ package com.zanxiang.game.module.sdk.service.impl;
|
|
|
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
|
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
|
|
+import com.zanxiang.game.back.base.pojo.enums.OrderStatusEnum;
|
|
import com.zanxiang.game.module.mybatis.entity.*;
|
|
import com.zanxiang.game.module.mybatis.entity.*;
|
|
import com.zanxiang.game.module.mybatis.mapper.OrderMapper;
|
|
import com.zanxiang.game.module.mybatis.mapper.OrderMapper;
|
|
import com.zanxiang.game.module.sdk.pojo.dto.GamePayWayDTO;
|
|
import com.zanxiang.game.module.sdk.pojo.dto.GamePayWayDTO;
|
|
@@ -106,6 +107,7 @@ public class OrderServiceImpl extends ServiceImpl<OrderMapper, Order> implements
|
|
.payDeviceId(gamePayWayDTO.getPayDeviceId())
|
|
.payDeviceId(gamePayWayDTO.getPayDeviceId())
|
|
.gamePayWayId(gamePayWayDTO.getId())
|
|
.gamePayWayId(gamePayWayDTO.getId())
|
|
.ext(payParam.getExtension())
|
|
.ext(payParam.getExtension())
|
|
|
|
+ .status(OrderStatusEnum.READY_PAY.getValue())
|
|
.createTime(LocalDateTime.now())
|
|
.createTime(LocalDateTime.now())
|
|
.updateTime(LocalDateTime.now())
|
|
.updateTime(LocalDateTime.now())
|
|
.build();
|
|
.build();
|