Files
geekai/api/store/vo/product.go
T
RockYang d4fd38ab7e feat: 迁移 geekai-plus v4.3.1 到开源版
- 同步 Plus v4.3.1 功能源并移除商业 License 闭环
- 更新开源镜像命名、Docker 部署版本和 geekai 数据库配置
- 补充前端 ESLint 检查配置并修复存量解析与模板问题
- 保留 JWT、管理员权限、API Key 和 OAuth 等正常鉴权机制
2026-09-13 14:37:12 +08:00

15 lines
381 B
Go

package vo
type Product struct {
BaseVo
Name string `json:"name"`
Price float64 `json:"price"`
StripePrice float64 `json:"stripe_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"`
}