9 changed files with 135 additions and 49 deletions
-
17api/v1/cover.go
-
44api/v1/member.go
-
13internal/cmd/cmd.go
-
14internal/controller/cover.go
-
6internal/controller/member.go
-
17internal/logic/cover/cover.go
-
46internal/logic/member/member.go
-
15internal/service/cover.go
-
12internal/service/member.go
@ -1,10 +1,19 @@ |
|||
package v1 |
|||
|
|||
type GetCoverImageReq struct { |
|||
// GetConfigReq 获取配置信息
|
|||
type GetConfigReq struct { |
|||
Id int `json:"id" v:"required"` |
|||
} |
|||
|
|||
type UpdateCoverImageReq struct { |
|||
Id int `json:"id" v:"required"` |
|||
Url string `json:"url" v:"required"` |
|||
// GetConfigRes 获取配置信息
|
|||
type GetConfigRes struct { |
|||
ImgUrl string `json:"img_url"` |
|||
Video string `json:"video"` |
|||
} |
|||
|
|||
// UpdateConfigReq 更新配置信息
|
|||
type UpdateConfigReq struct { |
|||
Id int `json:"id" v:"required"` |
|||
Url string `json:"url" v:"required"` |
|||
Video string `json:"video"` |
|||
} |
|||
@ -1,25 +1,55 @@ |
|||
package v1 |
|||
|
|||
import "github.com/gogf/gf/v2/os/gtime" |
|||
|
|||
// InsertMemberReq 用户注册
|
|||
type InsertMemberReq struct { |
|||
Name string `json:"name" v:"required#姓名不可为空!"` |
|||
Code string `json:"code" v:"required#国家/地区代码不可为空!"` |
|||
Tel string `json:"tel" v:"required#电话号码不可为空!"` |
|||
Type int `json:"type"` |
|||
Url string `json:"url"` |
|||
WeChat string `json:"weChat" v:"required#微信ID不可为空!"` |
|||
Email string `json:"email" v:"required#邮箱号不可为空!"` |
|||
Name string `json:"name" v:"required#姓名不可为空!"` |
|||
Code string `json:"code"` |
|||
Tel string `json:"tel" v:"required#电话号码不可为空!"` |
|||
Type int `json:"type"` |
|||
Url string `json:"url"` |
|||
WeChat string `json:"weChat"` |
|||
Email string `json:"email" v:"required#邮箱号不可为空!"` |
|||
Source int `json:"source" d:"0" dc:"数据来源, 0:原数据,现赢在美股导流部分 1:现DeepChart导流部分"` |
|||
BenefitIntention string `json:"benefit_intention" v:"required#请选择您希望优先获取的权益!" dc:"用户选择的优先获取的权益意向 1:DeepChart 2:夺宝奇兵 3:专题课 用英文逗号分割,不要带空格"` |
|||
//WeChat string `json:"weChat" v:"required#微信ID不可为空!"`
|
|||
//Code string `json:"code" v:"required#国家/地区代码不可为空!"`
|
|||
} |
|||
|
|||
// GetMemberListReq 获取用户信息
|
|||
type GetMemberListReq struct { |
|||
Source int `json:"source" d:"0" dc:"数据来源, 0:原数据,现赢在美股导流部分 1:现DeepChart导流部分"` |
|||
Page int `p:"page" d:"1"` |
|||
PageSize int `p:"page_size" d:"20"` |
|||
} |
|||
|
|||
// GetMemberListRes 获取用户信息
|
|||
type GetMemberListRes struct { |
|||
Id int `json:"id" orm:"id" description:"主键id"` |
|||
Name string `json:"name" orm:"name" description:"姓名"` |
|||
Code string `json:"code" orm:"code" description:"国家/地区代码"` |
|||
Telephone string `json:"telephone" orm:"telephone" description:"电话号码"` |
|||
Wechat string `json:"wechat" orm:"wechat" description:"微信ID"` |
|||
Email string `json:"email" orm:"email" description:"邮箱"` |
|||
CreatedAt *gtime.Time `json:"createdAt" orm:"created_at" description:"添加时间"` |
|||
Type int `json:"type" orm:"type" description:"注册来源(0其他,1视频,2直播,3帖子)"` |
|||
Url string `json:"url" orm:"url" description:"来源地址"` |
|||
UrlMd5 string `json:"urlMd5" orm:"url_md5" description:"来源地址(MD5加密)"` |
|||
IsRelated int `json:"isRelated" orm:"is_related" description:"是否联系"` |
|||
Note string `json:"note" orm:"note" description:"备注"` |
|||
Source int `json:"source" orm:"source" description:"数据来源, 0:原数据,现赢在美股导流部分 1:现DeepChart导流部分"` |
|||
BenefitIntention string `json:"benefit_intention" orm:"benefit_intention" description:"用户选择的优先获取的权益意向 1:DeepChart 2:夺宝奇兵 3:专题课 用英文逗号分割,不要带空格"` |
|||
RegistrationIntention string `json:"registration_intention" dc:"用户报名意向"` |
|||
} |
|||
|
|||
// UpdateStateReq 更新状态
|
|||
type UpdateStateReq struct { |
|||
Id int `json:"id" v:"required"` |
|||
State int `json:"state" v:"required|integer|in:0,1"` |
|||
} |
|||
|
|||
// EditNoteReq 修改备注
|
|||
type EditNoteReq struct { |
|||
Id int `json:"id" v:"required"` |
|||
Note string `json:"note"` |
|||
|
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue