remove_role.go
642 字节
package command
import (
"fmt"
"github.com/astaxie/beego/validation"
)
type RemoveRoleCommand struct {
// 角色id
RoleId int64 `json:"roleId" valid:"Required"`
}
func (removeRoleCommand *RemoveRoleCommand) Valid(validation *validation.Validation) {
validation.SetError("CustomValid", "未实现的自定义认证")
}
func (removeRoleCommand *RemoveRoleCommand) ValidateCommand() error {
valid := validation.Validation{}
b, err := valid.Valid(removeRoleCommand)
if err != nil {
return err
}
if !b {
for _, validErr := range valid.Errors {
return fmt.Errorf("%s %s", validErr.Key, validErr.Message)
}
}
return nil
}