审查视图

pkg/application/device/query/get_device.go 882 字节
yangfu authored
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
package query

import (
	"fmt"
	"reflect"
	"strings"

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

type GetDeviceQuery struct {
	// 设备Id
	DeviceId int `cname:"设备Id" json:"deviceId" valid:"Required"`
}

func (getDeviceQuery *GetDeviceQuery) Valid(validation *validation.Validation) {
yangfu authored
17
	//validation.SetError("CustomValid", "未实现的自定义认证")
yangfu authored
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
}

func (getDeviceQuery *GetDeviceQuery) ValidateQuery() error {
	valid := validation.Validation{}
	b, err := valid.Valid(getDeviceQuery)
	if err != nil {
		return err
	}
	if !b {
		elem := reflect.TypeOf(getDeviceQuery).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
}