param_cooperation_contract.go 989 字节
package allied_creation_cooperation

//创建共创合约
type (
	ReqCooperationContractAdd struct {
	}

	DataCooperationContractAdd struct {
	}
)

//更新共创合约
type (
	ReqCooperationContractUpdate struct {
		CooperationContractId int
	}

	DataCooperationContractUpdate struct {
	}
)

//查询共创合约
type (
	ReqCooperationContractSearch struct {
	}

	DataCooperationContractSearch struct {
	}
)

//根据承接人查询并返回共创项目合约
type (
	ReqCooperationContractSearchByUndertaker struct {
	}

	DataCooperationContractSearchByUndertaker struct {
	}
)

//移除共创合约
type (
	ReqCooperationContractRemove struct {
		CooperationContractId int
	}

	DataCooperationContractRemove struct {
	}
)

//返回共创合约列表
type (
	ReqCooperationContractList struct {
	}

	DataCooperationContractList struct {
	}
)

//返回共创合约详情
type (
	ReqCooperationContractGet struct {
		CooperationContractId int
	}

	DataCooperationContractGet struct {
	}
)