mirror of
https://github.com/yangjian102621/geekai.git
synced 2025-09-17 08:46:38 +08:00
16 lines
212 B
Go
16 lines
212 B
Go
package model
|
|
|
|
// Product 充值产品
|
|
type Product struct {
|
|
BaseModel
|
|
Name string
|
|
Price float64
|
|
Discount float64
|
|
Days int
|
|
Calls int
|
|
ImgCalls int
|
|
Enabled bool
|
|
Sales int
|
|
SortNum int
|
|
}
|