18 lines
460 B
Go
18 lines
460 B
Go
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{}
|