审查视图

pkg/application/auth/command/access_token.go 646 字节
yangfu authored
1 2 3 4 5 6 7 8 9
package command

import (
	"fmt"

	"github.com/beego/beego/v2/core/validation"
)

type AccessTokenCommand struct {
yangfu authored
10 11 12
	AuthCode      string `json:"authCode" valid:"Required"`
	SessionMode   int    `json:"sessionMode"`
	LoginPlatform string `json:"-"`
yangfu authored
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
}

func (orgAddCommand *AccessTokenCommand) Valid(validation *validation.Validation) {

}

func (orgAddCommand *AccessTokenCommand) ValidateCommand() error {
	valid := validation.Validation{}
	b, err := valid.Valid(orgAddCommand)
	if err != nil {
		return err
	}
	if !b {
		for _, validErr := range valid.Errors {
			return fmt.Errorf("%s  %s", validErr.Key, validErr.Message)
		}
	}
	return nil
}