system_cash_statistics.go 555 字节
package command

import (
	"fmt"

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

// 获取系统现金值
type SystemCashStatisticsCommand struct {
	CompanyId int64 `json:"companyId" valid:"Required"`   // 公司ID
}

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