Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix 卡券导入code返回值类型 #1883

Merged
merged 1 commit into from
Nov 21, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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