fix: 批量修复功能问题 - 购物车结算/订单库存积分/搜索/抽奖/个人资料等

This commit is contained in:
2026-05-26 09:27:20 +08:00
parent 760f67c925
commit 012ec873ec
14 changed files with 308 additions and 39 deletions
+3 -2
View File
@@ -10,8 +10,9 @@ type UpdateCartRequest struct {
}
type CreateOrderRequest struct {
ShippingAddressID uint `json:"shipping_address_id" binding:"required"`
PaymentMethod string `json:"payment_method"`
ShippingAddressID uint `json:"shipping_address_id" binding:"required"`
PaymentMethod string `json:"payment_method"`
CartItemIDs []uint `json:"cart_item_ids"`
}
type RefundRequest struct {