审查视图

pkg/application/background/menu/command/remove_menu.go 713 字节
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
package command

import (
	"fmt"
	"gitlab.fjmaimaimai.com/allied-creation/allied-creation-gateway/pkg/domain"

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

type RemoveMenuCommand struct {
	//操作人
	Operator domain.Operator `json:"-"`
	// 菜单编号
	MenuId int64 `json:"menuId" valid:"Required"`
}

func (removeMenuCommand *RemoveMenuCommand) Valid(validation *validation.Validation) {

}

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