feat(app): update
This commit is contained in:
30
pkg/dto/request/ResetPasswordRequest.go
Normal file
30
pkg/dto/request/ResetPasswordRequest.go
Normal file
@ -0,0 +1,30 @@
|
||||
package request
|
||||
|
||||
import "errors"
|
||||
|
||||
type ResetPasswordRequest struct {
|
||||
Mobile string
|
||||
Vericode string
|
||||
NewPassword string
|
||||
}
|
||||
|
||||
// 签名验证
|
||||
func (request *ResetPasswordRequest) CheckParameter() (err error) {
|
||||
|
||||
if len(request.Mobile) == 0 {
|
||||
err = errors.New("Mobile不能为空")
|
||||
return
|
||||
}
|
||||
|
||||
if len(request.Vericode) == 0 {
|
||||
err = errors.New("Vericode不能为空")
|
||||
return
|
||||
}
|
||||
|
||||
if len(request.NewPassword) == 0 {
|
||||
err = errors.New("NewPassword不能为空")
|
||||
return
|
||||
}
|
||||
|
||||
return
|
||||
}
|
||||
Reference in New Issue
Block a user