creationContractInformJoint.go 1.1 KB
package event

import coreDomain "github.com/linmadan/egglib-go/core/domain"

const CREATION_CONTRACT_INFORM_JOINT = "creation-contract-inform-joint"

type CreationContractInformJointData struct {
	// 共创合约ID
	CreationContractId int64 `json:"creationContractId"`
	// 共创合约名称
	CreationContractName string `json:"creationContractName"`
	// 共创合约编号
	CreationContractNumber string `json:"creationContractNumber"`
	// 共创项目ID
	CreationProjectId int64 `json:"creationProjectId"`
	// 共创项目编号
	CreationProjectNumber string `json:"creationProjectNumber"`
	// 共创项目名称
	CreationProjectName string `json:"creationProjectName"`
	// 申请人ID
	UserId int64 `json:"userId"`
	// 申请人基础ID
	UserBaseId int64 `json:"userBaseId"`
	// 组织机构ID
	OrgId int64 `json:"orgId"`
	// 公司ID
	CompanyId int64 `json:"companyId"`
}

type CreationContractInformJoint struct {
	coreDomain.BaseEvent
	CreationContractInformJointData []CreationContractInformJointData `json:"creationContractInformJointData"`
}

func (event *CreationContractInformJoint) EventType() string {
	return CREATION_CONTRACT_INFORM_JOINT
}