初始化

This commit is contained in:
2026-07-18 05:58:41 +08:00
commit e4b95eb05e
69 changed files with 2289 additions and 0 deletions

17
api/pricing/v1/pricing.go Normal file
View File

@@ -0,0 +1,17 @@
package v1
import "github.com/gogf/gf/v2/frame/g"
// PlansReq 是官网定价套餐请求。
type PlansReq struct {
g.Meta `path:"/api/pricing/plans" tags:"定价" method:"get" summary:"获取官网定价套餐"`
}
type PlansRes struct{}
// AdminPlansReq 是后台套餐列表请求。
type AdminPlansReq struct {
g.Meta `path:"/api/admin/pricing/plans" tags:"后台定价" method:"get" summary:"获取后台套餐列表"`
}
type AdminPlansRes struct{}