mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2025-05-02 20:02:37 +08:00
🎨 微信分账解冻剩余资金结果添加分账接收方列表receivers
This commit is contained in:
parent
cd034c4a6a
commit
41bb3b9901
@ -4,6 +4,7 @@ import com.google.gson.annotations.SerializedName;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 微信V3接口
|
||||
@ -46,7 +47,6 @@ public class ProfitSharingUnfreezeResult implements Serializable {
|
||||
@SerializedName("order_id")
|
||||
private String orderId;
|
||||
|
||||
|
||||
/**
|
||||
* <pre>
|
||||
* 字段名:分账单状态
|
||||
@ -59,6 +59,12 @@ public class ProfitSharingUnfreezeResult implements Serializable {
|
||||
@SerializedName("state")
|
||||
private String state;
|
||||
|
||||
/**
|
||||
* 分账接收方列表
|
||||
*/
|
||||
@SerializedName("receivers")
|
||||
private List<Receiver> receivers;
|
||||
|
||||
@Data
|
||||
public static class Receiver implements Serializable {
|
||||
private static final long serialVersionUID = 4240983048700956806L;
|
||||
|
Loading…
Reference in New Issue
Block a user