mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2025-08-25 01:14:36 +08:00
🎨 调整内部类为static
This commit is contained in:
parent
44331274e4
commit
a472ae6c1e
@ -81,7 +81,9 @@ public class BatchesQueryResult implements Serializable {
|
|||||||
*/
|
*/
|
||||||
@Data
|
@Data
|
||||||
@Accessors(chain = true)
|
@Accessors(chain = true)
|
||||||
public class TransferBatch implements Serializable {
|
public static class TransferBatch implements Serializable {
|
||||||
|
private static final long serialVersionUID = -5889662087155073442L;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <pre>
|
* <pre>
|
||||||
* 字段名:商户号
|
* 字段名:商户号
|
||||||
@ -94,7 +96,7 @@ public class BatchesQueryResult implements Serializable {
|
|||||||
* </pre>
|
* </pre>
|
||||||
*/
|
*/
|
||||||
@SerializedName("mchid")
|
@SerializedName("mchid")
|
||||||
private String mchid;
|
private String mchId;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <pre>
|
* <pre>
|
||||||
@ -335,7 +337,9 @@ public class BatchesQueryResult implements Serializable {
|
|||||||
*/
|
*/
|
||||||
@Data
|
@Data
|
||||||
@Accessors(chain = true)
|
@Accessors(chain = true)
|
||||||
public class TransferDetail implements Serializable {
|
public static class TransferDetail implements Serializable {
|
||||||
|
private static final long serialVersionUID = 172904924437448719L;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <pre>
|
* <pre>
|
||||||
* 字段名:微信明细单号
|
* 字段名:微信明细单号
|
||||||
|
Loading…
Reference in New Issue
Block a user