Skip to content

Commit

Permalink
🐛 #1883【公众号】修复卡券导入code接口错误的返回类型
Browse files Browse the repository at this point in the history
  • Loading branch information
ly8388 committed Nov 21, 2020
1 parent b351ef7 commit 1bac8f9
Showing 1 changed file with 7 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
import me.chanjar.weixin.mp.util.json.WxMpGsonBuilder;

import java.io.Serializable;
import java.util.List;


/**
Expand All @@ -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) {
Expand Down

0 comments on commit 1bac8f9

Please sign in to comment.