Skip to content

Commit baf7eb0

Browse files
committed
Revert "update: 更改 isAccountVerified 的 getter setter"
This reverts commit ff9aaa3.
1 parent ff9aaa3 commit baf7eb0

File tree

1 file changed

+7
-8
lines changed
  • src/main/java/com/alipay/global/api/model/ams

1 file changed

+7
-8
lines changed

src/main/java/com/alipay/global/api/model/ams/Buyer.java

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -44,14 +44,6 @@ public void setBuyerEmail(String buyerEmail) {
4444
this.buyerEmail = buyerEmail;
4545
}
4646

47-
public Boolean getIsAccountVerified() {
48-
return isAccountVerified;
49-
}
50-
51-
public void setIsAccountVerified(Boolean accountVerified) {
52-
isAccountVerified = accountVerified;
53-
}
54-
5547
public String getBuyerRegistrationTime() {
5648
return buyerRegistrationTime;
5749
}
@@ -60,6 +52,13 @@ public void setBuyerRegistrationTime(String buyerRegistrationTime) {
6052
this.buyerRegistrationTime = buyerRegistrationTime;
6153
}
6254

55+
public Boolean getAccountVerified() {
56+
return isAccountVerified;
57+
}
58+
59+
public void setAccountVerified(Boolean accountVerified) {
60+
isAccountVerified = accountVerified;
61+
}
6362

6463
public Integer getSuccessfulOrderCount() {
6564
return successfulOrderCount;

0 commit comments

Comments
 (0)