Appearance
会员
会员等级
获取单个会员等级信息
GET /plugins/vip/vip_levels/{levelId}
权限
- 不需要认证用户
响应
成功响应VipLevel
结构体
字段 | 描述 |
---|---|
id int string | ID |
seq int string | 顺序 |
name string | 名称 |
icon string | 图标 |
monthPrice float string | 每月的价格 |
yearPrice float string | 每年的价格 |
description string | 描述信息 |
freeLearned bool | 是否免费学习课程 |
enabled bool | 是否开启 |
createdTime datetime | 创建时间 |
maxRate datetime | 最大折扣百分比 |
simpleVip
结构体
字段 | 描述 |
---|---|
levelId string | 会员等级ID |
vipName string | 会员名称 |
deadline string | 有效期 |
seq string | 会员等级序号 |
获取所有会员等级
GET /plugins/vip/vip_levels
权限
- 不需要认证用户
- 获取的是状态是启用的会员等级
响应
成功响应list<VipLevel>结构体
是否是VIP会员
GET /me/vip_levels/{vipLevelId}
权限
- 需要认证用户
响应
是会员
json
{
"isMember": true
}
不是会员
json
{
"isMember": false
}