feat(app): update
This commit is contained in:
24
pkg/dto/request/DataRequest.go
Normal file
24
pkg/dto/request/DataRequest.go
Normal file
@ -0,0 +1,24 @@
|
||||
package request
|
||||
|
||||
import "errors"
|
||||
|
||||
type GetMatchUserRequest struct {
|
||||
BaseRequest
|
||||
SkillId string // 技能ID
|
||||
SkillMode string // 航天 大坝等
|
||||
SkillLevel string // 211 大专 985 等
|
||||
Gender string // 性别 女=0 男=1
|
||||
}
|
||||
|
||||
// 参数合法性检验
|
||||
func (request *GetMatchUserRequest) CheckParameter() (err error) {
|
||||
if len(request.AccessToken) == 0 {
|
||||
err = errors.New("AccessToken不能为空")
|
||||
return
|
||||
}
|
||||
if len(request.SkillId) == 0 {
|
||||
err = errors.New("SkillId不能为空")
|
||||
return
|
||||
}
|
||||
return
|
||||
}
|
||||
Reference in New Issue
Block a user