feat: align ids to int64
This commit is contained in:
@@ -1,14 +1,14 @@
|
||||
package dto
|
||||
|
||||
type OrderCreateForm struct {
|
||||
ContentID string `json:"content_id"`
|
||||
ContentID int64 `json:"content_id"`
|
||||
Sku string `json:"sku"`
|
||||
Quantity int `json:"quantity"`
|
||||
UserCouponID string `json:"user_coupon_id"`
|
||||
UserCouponID int64 `json:"user_coupon_id"`
|
||||
}
|
||||
|
||||
type OrderCreateResponse struct {
|
||||
OrderID string `json:"order_id"`
|
||||
OrderID int64 `json:"order_id"`
|
||||
}
|
||||
|
||||
type OrderPayForm struct {
|
||||
|
||||
Reference in New Issue
Block a user