You've already forked FrameTour-BE
订单改改改
This commit is contained in:
@ -16,6 +16,7 @@ import java.util.Date;
|
||||
public class OrderEntity {
|
||||
@TableId
|
||||
private Long id;
|
||||
private Long scenicId;
|
||||
/**
|
||||
* 用户id
|
||||
*/
|
||||
|
@ -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;
|
||||
}
|
@ -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参数值
|
||||
*/
|
||||
|
Reference in New Issue
Block a user