1 package com.foxinmy.weixin4j.payment.mch;
2
3 import com.foxinmy.weixin4j.model.WeixinPayAccount;
4 import com.foxinmy.weixin4j.payment.PayRequest;
5 import com.foxinmy.weixin4j.type.TradeType;
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21 @Deprecated
22 public interface MchPayRequest {
23
24
25
26
27
28 public String getPrePayId();
29
30
31
32
33
34
35 public WeixinPayAccount getPaymentAccount();
36
37
38
39
40
41
42 public TradeType getPaymentType();
43
44
45
46
47
48
49 public String toRequestString();
50
51
52
53
54
55
56 public PayRequest toRequestObject();
57 }