param_dividends_estimate.go
1.7 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
package allied_creation_cooperation
//确定预算分红激励
type (
ReqDividendsEstimateIncentive struct {
}
DataDividendsEstimateIncentive struct {
}
)
//创建分红预算
type (
ReqDividendsEstimateAdd struct {
}
DataDividendsEstimateAdd struct {
}
)
//更新分红预算
type (
ReqDividendsEstimateUpdate struct {
}
DataDividendsEstimateUpdate struct {
}
)
//查询业绩分红
type (
ReqDividendsEstimateSearchDividend struct {
}
DataDividendsEstimateSearchDividend struct {
}
)
//查询分红预算单
type (
ReqDividendsEstimateSearch struct {
}
DataDividendsEstimateSearch struct {
}
)
//查询金额激励分红
type (
ReqDividendsEstimateSearchMoney struct {
}
DataDividendsEstimateSearchMoney struct {
}
)
//取消分红预算
type (
ReqDividendsEstimateCancel struct {
DividendsEstimateId int
}
DataDividendsEstimateCancel struct {
}
)
//确定预算金额激励分红
type (
ReqDividendsEstimateMoneyIncentives struct {
}
DataDividendsEstimateMoneyIncentives struct {
}
)
//移除分红预算
type (
ReqDividendsEstimateRemove struct {
DividendsEstimateId int
}
DataDividendsEstimateRemove struct {
}
)
//返回业绩激励分红详情
type (
ReqDividendsEstimateListDividend struct {
}
DataDividendsEstimateListDividend struct {
}
)
//返回分红预算列表
type (
ReqDividendsEstimateList struct {
}
DataDividendsEstimateList struct {
}
)
//返回分红预算详情
type (
ReqDividendsEstimateGet struct {
DividendsEstimateId int
}
DataDividendsEstimateGet struct {
}
)
//返回金额激励分红列表
type (
ReqDividendsEstimatesListMoney struct {
}
DataDividendsEstimatesListMoney struct {
}
)