Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 0daab3d8bf | |||
| 923a7de1ff | |||
| d4170f326a |
@@ -1,9 +1,9 @@
|
|||||||
package entity
|
package entity
|
||||||
|
|
||||||
type ProductDimension struct {
|
type ProductDimension struct {
|
||||||
Length float64 `json:"length"`
|
Length string `json:"length"`
|
||||||
Width float64 `json:"width"`
|
Width string `json:"width"`
|
||||||
Height float64 `json:"height"`
|
Height string `json:"height"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// Product product properties
|
// Product product properties
|
||||||
|
|||||||
@@ -11,4 +11,5 @@ type ProductCategory struct {
|
|||||||
Image *ProductImage `json:"image,omitempty"`
|
Image *ProductImage `json:"image,omitempty"`
|
||||||
MenuOrder int `json:"menu_order"`
|
MenuOrder int `json:"menu_order"`
|
||||||
Count int `json:"count"`
|
Count int `json:"count"`
|
||||||
|
Exclude *bool `json:"exclude,omitempty"`
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user