cooperation_contract_by_undertaker.go 800 字节
package domain

// CooperationContractByUndertaker 根据承接人返回共创项目合约
type CooperationContractByUndertaker struct {
	// 共创合约ID
	CooperationContractId int64 `json:"cooperationContractId,string"`
	// 共创合约描述
	CooperationContractDescription string `json:"cooperationContractDescription"`
	// 共创合约编号
	CooperationContractNumber string `json:"cooperationContractNumber"`
	// 共创合约名称
	CooperationContractName string `json:"cooperationContractName"`
	// 共创模式
	CooperationMode *CooperationMode `json:"cooperationMode"`
	// 共创合约发起人
	CooperationContractSponsor *User `json:"cooperationContractSponsor"`
	// 状态
	Status int32 `json:"status"`
	// 共创合约承接人
	ContractUndertaker *User `json:"contractUndertaker"`
}