terminal_report.go 1.0 KB
package command

import (
	"fmt"
	"reflect"
	"strings"

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

type TerminalReportCommand struct {
	TerminalType string `json:"terminalType"`
	TerminalId   string `json:"terminalId"`
	Command      string `json:"command"`
	Content      string `json:"content"`
	Table        string `json:"table"`

	CompanyId int64 `json:"companyId"`
	OrgId     int64 `json:"orgId"`
}

func (terminalReportCommand *TerminalReportCommand) Valid(validation *validation.Validation) {

}

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