|
| 1 | +package com.github.binarywang.wxpay.bean.transfer; |
| 2 | + |
| 3 | +import com.google.gson.annotations.SerializedName; |
| 4 | +import lombok.Data; |
| 5 | +import lombok.NoArgsConstructor; |
| 6 | + |
| 7 | +import java.io.Serializable; |
| 8 | +import java.util.List; |
| 9 | + |
| 10 | +/** |
| 11 | + * 查询微信批次单号查询批次单API响应 |
| 12 | + * |
| 13 | + * @author zhongjun |
| 14 | + * @date 2022/6/17 |
| 15 | + **/ |
| 16 | +@Data |
| 17 | +@NoArgsConstructor |
| 18 | +public class QueryTransferBatchesResult implements Serializable { |
| 19 | + private static final long serialVersionUID = -2175582517588397426L; |
| 20 | + |
| 21 | + @SerializedName("offset") |
| 22 | + private Integer offset; |
| 23 | + |
| 24 | + @SerializedName("limit") |
| 25 | + private Integer limit; |
| 26 | + |
| 27 | + @SerializedName("transfer_batch") |
| 28 | + private TransferBatch transferBatch; |
| 29 | + |
| 30 | + @SerializedName("transfer_detail_list") |
| 31 | + private List<TransferDetail> transferDetailList; |
| 32 | + |
| 33 | + @NoArgsConstructor |
| 34 | + @Data |
| 35 | + public static class TransferBatch { |
| 36 | + @SerializedName("mchid") |
| 37 | + private String mchid; |
| 38 | + |
| 39 | + @SerializedName("out_batch_no") |
| 40 | + private String outBatchNo; |
| 41 | + |
| 42 | + @SerializedName("batch_id") |
| 43 | + private String batchId; |
| 44 | + |
| 45 | + @SerializedName("appid") |
| 46 | + private String appid; |
| 47 | + |
| 48 | + @SerializedName("batch_status") |
| 49 | + private String batchStatus; |
| 50 | + |
| 51 | + @SerializedName("batch_type") |
| 52 | + private String batchType; |
| 53 | + |
| 54 | + @SerializedName("batch_name") |
| 55 | + private String batchName; |
| 56 | + |
| 57 | + @SerializedName("batch_remark") |
| 58 | + private String batchRemark; |
| 59 | + |
| 60 | + @SerializedName("close_reason") |
| 61 | + private String closeReason; |
| 62 | + |
| 63 | + @SerializedName("total_amount") |
| 64 | + private Integer totalAmount; |
| 65 | + |
| 66 | + @SerializedName("total_num") |
| 67 | + private Integer totalNum; |
| 68 | + |
| 69 | + @SerializedName("create_time") |
| 70 | + private String createTime; |
| 71 | + |
| 72 | + @SerializedName("update_time") |
| 73 | + private String updateTime; |
| 74 | + |
| 75 | + @SerializedName("success_amount") |
| 76 | + private Integer successAmount; |
| 77 | + |
| 78 | + @SerializedName("success_num") |
| 79 | + private Integer successNum; |
| 80 | + |
| 81 | + @SerializedName("fail_amount") |
| 82 | + private Integer failAmount; |
| 83 | + |
| 84 | + @SerializedName("fail_num") |
| 85 | + private Integer failNum; |
| 86 | + } |
| 87 | + |
| 88 | + @NoArgsConstructor |
| 89 | + @Data |
| 90 | + public static class TransferDetail { |
| 91 | + |
| 92 | + @SerializedName("detail_id") |
| 93 | + private String detailId; |
| 94 | + |
| 95 | + @SerializedName("out_detail_no") |
| 96 | + private String outDetailNo; |
| 97 | + |
| 98 | + @SerializedName("detail_status") |
| 99 | + private String detailStatus; |
| 100 | + } |
| 101 | +} |
0 commit comments