mirror of
https://github.com/yangjian102621/geekai.git
synced 2025-09-17 16:56:38 +08:00
14 lines
314 B
Go
14 lines
314 B
Go
package vo
|
|
|
|
type Product struct {
|
|
BaseVo
|
|
Name string `json:"name"`
|
|
Price float64 `json:"price"`
|
|
Discount float64 `json:"discount"`
|
|
Days int `json:"days"`
|
|
Power int `json:"power"`
|
|
Enabled bool `json:"enabled"`
|
|
Sales int `json:"sales"`
|
|
SortNum int `json:"sort_num"`
|
|
}
|