Skip to content

Commit 41bb3b9

Browse files
authored
🎨 微信分账解冻剩余资金结果添加分账接收方列表receivers
1 parent cd034c4 commit 41bb3b9

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

weixin-java-pay/src/main/java/com/github/binarywang/wxpay/bean/profitsharingV3/ProfitSharingUnfreezeResult.java

+7-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
import lombok.Data;
55

66
import java.io.Serializable;
7+
import java.util.List;
78

89
/**
910
* 微信V3接口
@@ -46,7 +47,6 @@ public class ProfitSharingUnfreezeResult implements Serializable {
4647
@SerializedName("order_id")
4748
private String orderId;
4849

49-
5050
/**
5151
* <pre>
5252
* 字段名:分账单状态
@@ -59,6 +59,12 @@ public class ProfitSharingUnfreezeResult implements Serializable {
5959
@SerializedName("state")
6060
private String state;
6161

62+
/**
63+
* 分账接收方列表
64+
*/
65+
@SerializedName("receivers")
66+
private List<Receiver> receivers;
67+
6268
@Data
6369
public static class Receiver implements Serializable {
6470
private static final long serialVersionUID = 4240983048700956806L;

0 commit comments

Comments
 (0)