Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

添加发起商家转账接口的notify_url字段 #278

Merged
merged 1 commit into from
Jun 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,10 @@ public class InitiateBatchTransferRequest {
@SerializedName("transfer_scene_id")
private String transferSceneId;

/** 通知地址 说明:异步接收微信支付结果通知的回调地址,通知url必须为公网可访问的url,必须为https,不能携带参数。 */
@SerializedName("notify_url")
private String notifyUrl;

public String getAppid() {
return appid;
}
Expand Down Expand Up @@ -119,6 +123,14 @@ public void setTransferSceneId(String transferSceneId) {
this.transferSceneId = transferSceneId;
}

public String getNotifyUrl() {
return notifyUrl;
}

public void setNotifyUrl(String notifyUrl) {
this.notifyUrl = notifyUrl;
}

@Override
public String toString() {
StringBuilder sb = new StringBuilder();
Expand All @@ -131,6 +143,7 @@ public String toString() {
sb.append(" totalNum: ").append(toIndentedString(totalNum)).append("\n");
sb.append(" transferDetailList: ").append(toIndentedString(transferDetailList)).append("\n");
sb.append(" transferSceneId: ").append(toIndentedString(transferSceneId)).append("\n");
sb.append(" notifyUrl: ").append(toIndentedString(notifyUrl)).append("\n");
sb.append("}");
return sb.toString();
}
Expand All @@ -153,6 +166,7 @@ public InitiateBatchTransferRequest cloneWithCipher(UnaryOperator<String> s) {
}
}
copy.transferSceneId = transferSceneId;
copy.notifyUrl = notifyUrl;
return copy;
}
}
Loading