estimate_money_incentives.go 1.9 KB
package command

import (
	"fmt"
	"reflect"
	"strings"

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

type EstimateMoneyIncentivesCommand struct {
	// 共创项目合约编号
	CooperationContractNumber string `cname:"共创项目合约编号" json:"cooperationContractNumber" valid:"Required"`
	// 分红阶段
	DividendsIncentivesStage int64 `cname:"分红阶段" json:"dividendsIncentivesStage,string" valid:"Required"`
	// 承接人UID
	UndertakerUid string `cname:"承接人UID" json:"undertakerUid" valid:"Required"`
	// 公司ID,通过集成REST上下文获取
	CompanyId int64 `cname:"公司ID,通过集成REST上下文获取" json:"companyId,string" valid:"Required"`
	// 组织机构ID
	OrgId int64 `cname:"组织机构ID" json:"orgId,string" valid:"Required"`
	// 用户ID,通过集成REST上下文获取,可翻译成发起人、承接人、推荐人、业务员
	UserId int64 `cname:"用户ID,通过集成REST上下文获取,可翻译成发起人、承接人、推荐人、业务员" json:"userId,string" valid:"Required"`
	// 用户基础数据id
	UserBaseId int64 `cname:"用户基础数据is" json:"userBaseId,string" valid:"Required"`
}

func (estimateMoneyIncentivesCommand *EstimateMoneyIncentivesCommand) Valid(validation *validation.Validation) {
	//validation.SetError("CustomValid", "未实现的自定义认证")
}

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