mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2025-06-28 13:16:19 +08:00
🐛 #1883【公众号】修复卡券导入code接口错误的返回类型
This commit is contained in:
parent
b351ef761c
commit
1bac8f9774
@ -5,6 +5,7 @@ import lombok.Data;
|
||||
import me.chanjar.weixin.mp.util.json.WxMpGsonBuilder;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
/**
|
||||
@ -15,22 +16,22 @@ public class WxMpCardCodeDepositResult implements Serializable {
|
||||
private static final long serialVersionUID = 2955588617765355420L;
|
||||
|
||||
/**
|
||||
* 成功个数
|
||||
* 成功的code
|
||||
*/
|
||||
@SerializedName("succ_code")
|
||||
private Integer succCode;
|
||||
private List<String> succCode;
|
||||
|
||||
/**
|
||||
* 重复导入的code会自动被过滤
|
||||
* 重复导入的code
|
||||
*/
|
||||
@SerializedName("duplicate_code")
|
||||
private Integer duplicateCode;
|
||||
private List<String> duplicateCode;
|
||||
|
||||
/**
|
||||
* 失败个数
|
||||
* 失败的code
|
||||
*/
|
||||
@SerializedName("fail_code")
|
||||
private Integer failCode;
|
||||
private List<String> failCode;
|
||||
|
||||
|
||||
public static WxMpCardCodeDepositResult fromJson(String json) {
|
||||
|
Loading…
Reference in New Issue
Block a user