mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2025-05-03 20:27:46 +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 lombok.Data;
|
||||||
|
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 微信V3接口
|
* 微信V3接口
|
||||||
@ -46,7 +47,6 @@ public class ProfitSharingUnfreezeResult implements Serializable {
|
|||||||
@SerializedName("order_id")
|
@SerializedName("order_id")
|
||||||
private String orderId;
|
private String orderId;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <pre>
|
* <pre>
|
||||||
* 字段名:分账单状态
|
* 字段名:分账单状态
|
||||||
@ -59,6 +59,12 @@ public class ProfitSharingUnfreezeResult implements Serializable {
|
|||||||
@SerializedName("state")
|
@SerializedName("state")
|
||||||
private String state;
|
private String state;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 分账接收方列表
|
||||||
|
*/
|
||||||
|
@SerializedName("receivers")
|
||||||
|
private List<Receiver> receivers;
|
||||||
|
|
||||||
@Data
|
@Data
|
||||||
public static class Receiver implements Serializable {
|
public static class Receiver implements Serializable {
|
||||||
private static final long serialVersionUID = 4240983048700956806L;
|
private static final long serialVersionUID = 4240983048700956806L;
|
||||||
|
Loading…
Reference in New Issue
Block a user