审查视图

pkg/application/mobile/cooperation/command/cd_search_dividends_estimates.go 894 字节
1 2 3 4 5 6 7 8 9 10 11 12
package command

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

// Command
type SearchDividendsEstimatesCommand struct {
	//操作人
	Operator domain.Operator `json:"-"`
yangfu authored
13
	// 查询偏离量
14
	PageNumber int `json:"pageNumber" valid:"Required"`
yangfu authored
15 16
	// 查询限制
	PageSize int `json:"pageSize" valid:"Required"`
yangfu authored
17
	//状态
yangfu authored
18
	Status int `json:"status"`
yangfu authored
19 20
	// 组织Id
	OrgId int64 `json:"orgId" valid:"Required"`
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
}

func (cmd *SearchDividendsEstimatesCommand) Valid(validation *validation.Validation) {

}

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