You've already forked FrameTour-BE
batch下订单
This commit is contained in:
@@ -17,6 +17,11 @@ public class OrderEntity {
|
||||
@TableId
|
||||
private Long id;
|
||||
private Long scenicId;
|
||||
/**
|
||||
* 订单类型: -1 全场打包 0 单点 1 打包
|
||||
*/
|
||||
private int type;
|
||||
private Integer priceConfigId;
|
||||
/**
|
||||
* 用户id
|
||||
*/
|
||||
|
@@ -0,0 +1,12 @@
|
||||
package com.ycwl.basic.model.pc.order.req;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class CreateBatchOrderReqVO {
|
||||
private Long scenicId;
|
||||
private Integer type;
|
||||
private String goodsId;
|
||||
private Long faceId;
|
||||
private Long couponId;
|
||||
}
|
Reference in New Issue
Block a user