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

修复分账接收方列表”姓名“字段加密功能 #3045

Merged
merged 1 commit into from
Jun 16, 2023
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
@@ -1,5 +1,6 @@
package com.github.binarywang.wxpay.bean.profitsharingV3;

import com.github.binarywang.wxpay.v3.SpecEncrypt;
import com.google.gson.annotations.SerializedName;
import lombok.AllArgsConstructor;
import lombok.Builder;
Expand Down Expand Up @@ -70,6 +71,7 @@ public class ProfitSharingRequest implements Serializable {
* 描述:分账接收方列表,可以设置出资商户作为分账接受方,最多可有50个分账接收方
* </pre>
*/
@SpecEncrypt
@SerializedName("receivers")
private List<ProfitSharingReceiver> receivers;

Expand Down