订单改改改

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