审查视图

pkg/application/productPlan/command/set_online.go 1.1 KB
yangfu authored
1 2 3 4 5 6 7 8 9 10 11 12 13 14
package command

import (
	"fmt"
	"reflect"
	"strings"

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

type SetOnlineCommand struct {
	// 生产计划ID
	ProductPlanId int `cname:"生产计划ID" json:"productPlanId" valid:"Required"`
	// 车间ID
yangfu authored
15
	WorkshopId int `cname:"车间ID" json:"workshopId" `
yangfu authored
16
	// 生产线ID
yangfu authored
17
	LineId int `cname:"生产线ID" json:"lineId" valid:"Required"`
yangfu authored
18 19 20 21 22
	// 工段ID
	SectionId int `cname:"工段ID" json:"sectionId" valid:"Required"`
}

func (setOnlineCommand *SetOnlineCommand) Valid(validation *validation.Validation) {
yangfu authored
23
	//validation.SetError("CustomValid", "未实现的自定义认证")
yangfu authored
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
}

func (setOnlineCommand *SetOnlineCommand) ValidateCommand() error {
	valid := validation.Validation{}
	b, err := valid.Valid(setOnlineCommand)
	if err != nil {
		return err
	}
	if !b {
		elem := reflect.TypeOf(setOnlineCommand).Elem()
		for _, validErr := range valid.Errors {
			field, isExist := elem.FieldByName(validErr.Field)
			if isExist {
				return fmt.Errorf(strings.Replace(validErr.Message, validErr.Field, field.Tag.Get("cname"), -1))
			} else {
				return fmt.Errorf(validErr.Message)
			}
		}
	}
	return nil
}