File tree Expand file tree Collapse file tree 5 files changed +22
-7
lines changed
src/main/java/com/alipay/global/api Expand file tree Collapse file tree 5 files changed +22
-7
lines changed Original file line number Diff line number Diff line change @@ -118,4 +118,6 @@ update:alipayPayRequest
118
118
add:payments/syncArrear
119
119
add:payments/createDeviceCertificate
120
120
35、Version:2.0.41
121
- add:Boolean request.order.needDeclaration
121
+ add:Boolean request.order.needDeclaration
122
+ 35、Version:2.0.42
123
+ add AlipayAuthConsultRequest.authMetaData AE企业支付宝代扣集成方案
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ https://mvnrepository.com/artifact/com.alipay.global.sdk/global-open-sdk-java
12
12
<dependency>
13
13
<groupId>com.alipay.global.sdk</groupId>
14
14
<artifactId>global-open-sdk-java</artifactId>
15
- <version>2.0.41 </version>
15
+ <version>2.0.42 </version>
16
16
</dependency>
17
17
```
18
18
Original file line number Diff line number Diff line change 4
4
<groupId >com.alipay.global.sdk</groupId >
5
5
<artifactId >global-open-sdk-java</artifactId >
6
6
<packaging >jar</packaging >
7
- <version >2.0.41 </version >
7
+ <version >2.0.42 </version >
8
8
<name >global-open-sdk-java</name >
9
9
<url >https://github.com/alipay/global-open-sdk-java</url >
10
10
<description >
Original file line number Diff line number Diff line change
1
+ package com .alipay .global .api .model .ams ;
2
+
3
+ import lombok .AllArgsConstructor ;
4
+ import lombok .Builder ;
5
+ import lombok .Data ;
6
+ import lombok .NoArgsConstructor ;
7
+
8
+ @ Data
9
+ @ Builder
10
+ @ NoArgsConstructor
11
+ @ AllArgsConstructor
12
+ public class AuthMetaData {
13
+ private String accountHolderName ;
14
+ private String accountHolderCertNo ;
15
+ }
Original file line number Diff line number Diff line change 1
1
package com .alipay .global .api .request .ams .auth ;
2
2
3
- import com .alipay .global .api .model .ams .CustomerBelongsTo ;
4
- import com .alipay .global .api .model .ams .OsType ;
5
- import com .alipay .global .api .model .ams .ScopeType ;
6
- import com .alipay .global .api .model .ams .TerminalType ;
3
+ import com .alipay .global .api .model .ams .*;
7
4
import com .alipay .global .api .model .constants .AntomPathConstants ;
8
5
import com .alipay .global .api .request .AlipayRequest ;
9
6
import com .alipay .global .api .response .ams .auth .AlipayAuthConsultResponse ;
@@ -25,6 +22,7 @@ public class AlipayAuthConsultRequest extends AlipayRequest<AlipayAuthConsultRes
25
22
private String extendInfo ;
26
23
private String merchantRegion ;
27
24
private Boolean recurringPayment ;
25
+ private AuthMetaData authMetaData ;
28
26
29
27
public AlipayAuthConsultRequest () {
30
28
this .setPath (AntomPathConstants .AUTH_CONSULT_PATH );
You can’t perform that action at this time.
0 commit comments