employees_su_money_statistics.go 553 字节
package command

import (
	"fmt"

	"github.com/astaxie/beego/validation"
)

type EmployeesSuMoneyStatisticsCommand struct {
	CompanyId int `json:"companyId" valid:"Required"`   // 公司id
}

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