Skip to content

Commit ff9aaa3

Browse files
committed
update: 更改 isAccountVerified 的 getter setter
1 parent ce0d353 commit ff9aaa3

File tree

1 file changed

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

1 file changed

+8
-7
lines changed

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

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,14 @@ 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+
4755
public String getBuyerRegistrationTime() {
4856
return buyerRegistrationTime;
4957
}
@@ -52,13 +60,6 @@ public void setBuyerRegistrationTime(String buyerRegistrationTime) {
5260
this.buyerRegistrationTime = buyerRegistrationTime;
5361
}
5462

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

6364
public Integer getSuccessfulOrderCount() {
6465
return successfulOrderCount;

0 commit comments

Comments
 (0)