zhanglin
2023-07-20 cde69bd6e9ce00b22df3690d85ea295459e3b168
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
package com.ruoyi.order.tools.service;
 
 
import com.ruoyi.order.tools.constant.AccountType;
import com.ruoyi.order.tools.request.ecommerce.fund.WithdrawExceptionLogRequest;
import com.ruoyi.order.tools.request.ecommerce.fund.WithdrawForPlatformRequest;
import com.ruoyi.order.tools.request.ecommerce.fund.WithdrawForSubMchRequest;
import com.ruoyi.order.tools.request.ecommerce.profitsharing.*;
import com.ruoyi.order.tools.request.ecommerce.refunds.RefundApplyRequest;
import com.ruoyi.order.tools.request.ecommerce.refunds.RefundNotifyRequest;
import com.ruoyi.order.tools.request.ecommerce.refunds.RefundNotifyRequest1;
import com.ruoyi.order.tools.request.ecommerce.subsidies.SubsidiesCancelRequest;
import com.ruoyi.order.tools.request.ecommerce.subsidies.SubsidiesCreateRequest;
import com.ruoyi.order.tools.request.ecommerce.subsidies.SubsidiesRefundRequest;
import com.ruoyi.order.tools.request.pay.bill.BillOfFundFlowRequest;
import com.ruoyi.order.tools.request.pay.bill.BillOfTradeRequest;
import com.ruoyi.order.tools.request.pay.combine.CombineTransactionsAppRequest;
import com.ruoyi.order.tools.request.pay.combine.CombineTransactionsCloseRequest;
import com.ruoyi.order.tools.request.pay.combine.CombineTransactionsJsRequest;
import com.ruoyi.order.tools.request.pay.combine.CombineTransactionsNotifyRequest1;
import com.ruoyi.order.tools.response.ecommerce.amount.AmountDayEndOfPlatformResponse;
import com.ruoyi.order.tools.response.ecommerce.amount.AmountDayEndOfSubMchResponse;
import com.ruoyi.order.tools.response.ecommerce.amount.AmountOnlineOfPlatformResponse;
import com.ruoyi.order.tools.response.ecommerce.amount.AmountOnlineOfSubMchResponse;
import com.ruoyi.order.tools.response.ecommerce.applyments.ApplymentsModifySettlementResponse;
import com.ruoyi.order.tools.response.ecommerce.applyments.ApplymentsResponse;
import com.ruoyi.order.tools.applyments.ApplymentsRequest;
import com.ruoyi.order.tools.response.ecommerce.applyments.ApplymentsSettlementStatusResponse;
import com.ruoyi.order.tools.response.ecommerce.applyments.ApplymentsStatusResponse;
import com.ruoyi.order.tools.applyments.ApplymentsModifySettlementRequest;
import com.ruoyi.order.tools.response.ecommerce.fund.WithdrawForPlatformResponse;
import com.ruoyi.order.tools.response.ecommerce.fund.WithdrawForSubMchResponse;
import com.ruoyi.order.tools.response.ecommerce.fund.WithdrawStatusForPlatformResponse;
import com.ruoyi.order.tools.response.ecommerce.fund.WithdrawStatusForSubMchResponse;
import com.ruoyi.order.tools.response.ecommerce.profitsharing.*;
import com.ruoyi.order.tools.response.ecommerce.refunds.RefundApplyResponse;
import com.ruoyi.order.tools.response.ecommerce.refunds.RefundQueryStatusResponse;
import com.ruoyi.order.tools.response.ecommerce.subsidies.SubsidiesCancelResponse;
import com.ruoyi.order.tools.response.ecommerce.subsidies.SubsidiesCreateResponse;
import com.ruoyi.order.tools.response.ecommerce.subsidies.SubsidiesRefundResponse;
import com.ruoyi.order.tools.response.pay.combine.CombineTransactionsStatusResponse;
import com.ruoyi.order.tools.response.tool.ImageUploadResponse;
 
import java.io.File;
import java.io.InputStream;
import java.security.cert.X509Certificate;
import java.util.*;
 
public class ProfitsSharingServiceEmptyImpl implements ProfitsSharingService {
    @Override
    public Optional<ApplymentsResponse> applyments(ApplymentsRequest request) {
        return Optional.empty();
    }
 
    @Override
    public Optional<ApplymentsStatusResponse> queryApplymentsStatus(String applymentId) {
        return Optional.empty();
    }
 
    @Override
    public Optional<ApplymentsStatusResponse> queryApplymentsStatusByOutNo(String outRequestNo) {
        return Optional.empty();
    }
 
    @Override
    public List<X509Certificate> downloadCertificates() {
        return Collections.emptyList();
    }
 
    @Override
    public Optional<ApplymentsModifySettlementResponse> modifySettlement(ApplymentsModifySettlementRequest request) {
        return Optional.empty();
    }
 
    @Override
    public Optional<ApplymentsSettlementStatusResponse> querySettlement(String subMchid) {
        return Optional.empty();
    }
 
    @Override
    public Optional<String> combineTransactions(CombineTransactionsAppRequest request) {
        return Optional.empty();
    }
 
    @Override
    public Optional<String> combineTransactions(CombineTransactionsJsRequest request) {
        return Optional.empty();
    }
 
    @Override
    public Optional<CombineTransactionsStatusResponse> combineTransactionsStatus(String combineOutTradeNo) {
        return Optional.empty();
    }
 
    @Override
    public void combineTransactionsClose(CombineTransactionsCloseRequest request) {
 
    }
 
    @Override
    public Map<String, String> getAppPayParams(String prePayId, String appId) {
        return null;
    }
 
    @Override
    public Map<String, String> getJsPayParams(String prePayId, String appId) {
        return null;
    }
 
    @Override
    public Map<String, String> getSmallPayParams(String prePayId, String appId) {
        return null;
    }
 
    @Override
    public boolean verifyNotifySign(String timeStamp, String nonce, String body, String signed, String serialNo) {
        return false;
    }
 
    @Override
    public Optional<CombineTransactionsNotifyRequest1> parsePayNotify(String notifyContent) {
        return Optional.empty();
    }
 
    @Override
    public Optional<SubsidiesCreateResponse> subsidiesCreate(SubsidiesCreateRequest request) {
        return Optional.empty();
    }
 
    @Override
    public Optional<SubsidiesRefundResponse> subsidiesRefund(SubsidiesRefundRequest request) {
        return Optional.empty();
    }
 
    @Override
    public Optional<SubsidiesCancelResponse> subsidiesCancel(SubsidiesCancelRequest request) {
        return Optional.empty();
    }
 
    @Override
    public Optional<ProfitSharingApplyResponse> applyProfitSharing(ProfitSharingApplyRequest request) {
        return Optional.empty();
    }
 
    @Override
    public Optional<String> getPlatformId() {
        return Optional.empty();
    }
 
    @Override
    public Optional<ProfitSharingQueryApplyResponse> queryProfitSharingStatus(ProfitSharingQueryApplyRequest request) {
        return Optional.empty();
    }
 
    @Override
    public Optional<ProfitSharingRefundResponse> refundProfitSharing(ProfitSharingRefundRequest request) {
        return Optional.empty();
    }
 
    @Override
    public Optional<ProfitSharingQueryRefundResponse> queryRefundProfitSharingStatus(ProfitSharingQueryRefundRequest request) {
        return Optional.empty();
    }
 
    @Override
    public Optional<ProfitSharingFinishResponse> finishProfitSharing(ProfitSharingFinishRequest request) {
        return Optional.empty();
    }
 
    @Override
    public Optional<ProfitSharingAddReceiverResponse> addReceiver(ProfitSharingAddReceiverRequest request) {
        return Optional.empty();
    }
 
    @Override
    public Optional<ProfitSharingRemoveReceiverResponse> removeReceiver(ProfitSharingRemoveReceiverRequest request) {
        return Optional.empty();
    }
 
    @Override
    public Optional<ProfitSharingNotifyRequest1> parseProfitsSharingNotify(ProfitSharingNotifyRequest request) {
        return Optional.empty();
    }
 
    @Override
    public Optional<RefundApplyResponse> refundApply(RefundApplyRequest request) {
        return Optional.empty();
    }
 
    @Override
    public Optional<RefundQueryStatusResponse> refundQueryById(String subMchid, String refundId) {
        return Optional.empty();
    }
 
    @Override
    public Optional<RefundQueryStatusResponse> refundQueryByNumber(String subMchid, String outRefundNo) {
        return Optional.empty();
    }
 
    @Override
    public Optional<RefundNotifyRequest1> parseRefundNotify(RefundNotifyRequest request) {
        return Optional.empty();
    }
 
    @Override
    public Optional<AmountOnlineOfSubMchResponse> queryOnlineAmount(String subMchid) {
        return Optional.empty();
    }
 
    @Override
    public Optional<AmountDayEndOfSubMchResponse> queryDayEndAmount(String subMchid, Date date) {
        return Optional.empty();
    }
 
    @Override
    public Optional<AmountOnlineOfPlatformResponse> queryOnlineAmount(AccountType accountType) {
        return Optional.empty();
    }
 
    @Override
    public Optional<AmountDayEndOfPlatformResponse> queryDayEndAmount(AccountType accountType, Date date) {
        return Optional.empty();
    }
 
    @Override
    public Optional<WithdrawForSubMchResponse> withdraw(WithdrawForSubMchRequest request) {
        return Optional.empty();
    }
 
    @Override
    public Optional<WithdrawStatusForSubMchResponse> queryWithdrawStatusByOutNo(String subMchId, String outRequestNo) {
        return Optional.empty();
    }
 
    @Override
    public Optional<WithdrawForPlatformResponse> withdraw(WithdrawForPlatformRequest request) {
        return Optional.empty();
    }
 
    @Override
    public Optional<WithdrawStatusForSubMchResponse> queryWithdrawStatus(String subMchId, String withdrawId) {
        return Optional.empty();
    }
 
    @Override
    public Optional<WithdrawStatusForPlatformResponse> queryWithdrawStatus(String outRequestNo) {
        return Optional.empty();
    }
 
    @Override
    public Optional<String> downloadWithdrawExceptionFile(WithdrawExceptionLogRequest request) {
        return Optional.empty();
    }
 
    @Override
    public Optional<String> downloadTradeBill(BillOfTradeRequest request) {
        return Optional.empty();
    }
 
    @Override
    public Optional<String> downloadTradeBill(BillOfFundFlowRequest request) {
        return Optional.empty();
    }
 
    @Override
    public InputStream downloadBillFile(String downloadUrl) {
        return null;
    }
 
    @Override
    public Optional<ImageUploadResponse> uploadImage(File file) {
        return Optional.empty();
    }
}