修改id数据类型
This commit is contained in:
@@ -14,7 +14,7 @@ const (
|
||||
)
|
||||
|
||||
type ProductsChange struct {
|
||||
OrderId int64 `json:"order_id"`
|
||||
OrderId uint `json:"order_id"`
|
||||
State StockState `json:"state"`
|
||||
SkuItems []*SkuItem
|
||||
}
|
||||
@@ -26,5 +26,5 @@ type SkuItem struct {
|
||||
}
|
||||
|
||||
type ProductsStockWarn struct {
|
||||
ID string `json:"id"` // skuID
|
||||
ID uint `json:"id"` // skuID
|
||||
}
|
||||
|
Reference in New Issue
Block a user