batch下订单

This commit is contained in:
2025-02-25 16:57:35 +08:00
parent 95747a2a71
commit e199e0e57b
10 changed files with 158 additions and 31 deletions

View File

@@ -17,6 +17,11 @@ public class OrderEntity {
@TableId
private Long id;
private Long scenicId;
/**
* 订单类型: -1 全场打包 0 单点 1 打包
*/
private int type;
private Integer priceConfigId;
/**
* 用户id
*/

View File

@@ -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;
}