mirror of
https://gitee.com/blackfox/geekai.git
synced 2024-12-04 21:27:39 +08:00
15 lines
198 B
Go
15 lines
198 B
Go
package model
|
|
|
|
// Product 充值产品
|
|
type Product struct {
|
|
BaseModel
|
|
Name string
|
|
Price float64
|
|
Discount float64
|
|
Days int
|
|
Power int
|
|
Enabled bool
|
|
Sales int
|
|
SortNum int
|
|
}
|