feat(order): 添加店铺ID字段到订单创建请求

- 在OrderCreateRequest DTO中新增storeId字段
- 为新字段添加Swagger文档注解支持
- 扩展订单创建功能以支持店铺维度的业务逻辑
This commit is contained in:
2026-02-01 09:57:01 +08:00
parent 0a466153f7
commit fc00728729

View File

@@ -46,6 +46,9 @@ public class OrderCreateRequest {
@Schema(description = "商户编号") @Schema(description = "商户编号")
private String merchantCode; private String merchantCode;
@Schema(description = "店铺ID")
private Integer storeId;
@Schema(description = "使用的优惠券id") @Schema(description = "使用的优惠券id")
private Integer couponId; private Integer couponId;