审查视图

pkg/application/web/excelData/command/import_data_command.go 735 字节
yangfu authored
1 2 3 4 5 6 7 8 9 10 11 12 13
package command

import (
	"fmt"
	"github.com/beego/beego/v2/core/validation"
	"gitlab.fjmaimaimai.com/allied-creation/allied-creation-gateway/pkg/domain"
	"io"
)

type ImportDataCommand struct {
	//操作人
	Operator domain.Operator `json:"-"`
	Reader   io.Reader       `json:"-"`
yangfu authored
14
	// 业务编码
yangfu authored
15
	Code string `form:"code"`
yangfu authored
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
}

func (importDataCommand *ImportDataCommand) Valid(validation *validation.Validation) {

}

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