login_by_account.go
702 字节
package query
import (
"fmt"
"github.com/beego/beego/v2/core/validation"
)
type LoginByAccountQuery struct {
// 账号
Account string `json:"account,omitempty"`
// 密码
Passwd string `json:"passwd,omitempty"`
}
func (loginByAccountQuery *LoginByAccountQuery) Valid(validation *validation.Validation) {
validation.SetError("CustomValid", "未实现的自定义认证")
}
func (loginByAccountQuery *LoginByAccountQuery) ValidateQuery() error {
valid := validation.Validation{}
b, err := valid.Valid(loginByAccountQuery)
if err != nil {
return err
}
if !b {
for _, validErr := range valid.Errors {
return fmt.Errorf("%s %s", validErr.Key, validErr.Message)
}
}
return nil
}