param_cooperation_contract.go
989 字节
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
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 {
}
)