订单改改改

This commit is contained in:
2025-01-05 16:18:35 +08:00
parent 3b65094c2d
commit 294f9b6690
11 changed files with 147 additions and 135 deletions

View File

@ -16,6 +16,7 @@ import java.util.Date;
public class OrderEntity {
@TableId
private Long id;
private Long scenicId;
/**
* 用户id
*/

View File

@ -0,0 +1,12 @@
package com.ycwl.basic.model.pc.order.req;
import lombok.Data;
@Data
public class CreateOrderReqVO {
private Long scenicId;
private Integer goodsType;
private Long goodsId;
private String brokerCode;
private Long couponId;
}

View File

@ -18,6 +18,7 @@ import java.io.Serializable;
public class WxPayRespVO implements Serializable {
private static final long serialVersionUID = 1L;
private boolean needPay = true;
/**
* 预支付交易会话标识小程序下单接口返回的prepay_id参数值
*/