mirror of
https://github.com/yangjian102621/geekai.git
synced 2026-02-06 06:24:30 +08:00
27 lines
1.5 KiB
Go
27 lines
1.5 KiB
Go
package model
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
// Product 充值产品
|
|
type Product struct {
|
|
Id uint `gorm:"column:id;primaryKey;autoIncrement" json:"id"`
|
|
Name string `gorm:"column:name;type:varchar(30);not null;comment:名称" json:"name"`
|
|
Price float64 `gorm:"column:price;type:decimal(10,2);not null;default:0.00;comment:价格" json:"price"`
|
|
Discount float64 `gorm:"column:discount;type:decimal(10,2);not null;default:0.00;comment:优惠金额" json:"discount"`
|
|
Days int `gorm:"column:days;type:smallint;not null;default:0;comment:延长天数" json:"days"`
|
|
Power int `gorm:"column:power;type:int;not null;default:0;comment:增加算力值" json:"power"`
|
|
Enabled bool `gorm:"column:enabled;type:tinyint(1);not null;default:0;comment:是否启动" json:"enabled"`
|
|
Sales int `gorm:"column:sales;type:int;not null;default:0;comment:销量" json:"sales"`
|
|
SortNum int `gorm:"column:sort_num;type:tinyint;not null;default:0;comment:排序" json:"sort_num"`
|
|
CreatedAt time.Time `gorm:"column:created_at;type:datetime;not null" json:"created_at"`
|
|
UpdatedAt time.Time `gorm:"column:updated_at;type:datetime;not null" json:"updated_at"`
|
|
AppUrl string `gorm:"column:app_url;type:varchar(255);comment:App跳转地址" json:"app_url"`
|
|
Url string `gorm:"column:url;type:varchar(255);comment:跳转地址" json:"url"`
|
|
}
|
|
|
|
func (m *Product) TableName() string {
|
|
return "chatgpt_products"
|
|
}
|