1
0
mirror of synced 2025-12-18 05:47:58 +08:00

🐛 #1883【公众号】修复卡券导入code接口错误的返回类型

This commit is contained in:
ly8388
2020-11-21 20:57:37 +08:00
committed by GitHub
parent b351ef761c
commit 1bac8f9774

View File

@@ -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) {