初始化
This commit is contained in:
17
api/pricing/v1/pricing.go
Normal file
17
api/pricing/v1/pricing.go
Normal 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{}
|
||||
Reference in New Issue
Block a user