File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed
weixin-java-mp/src/main/java/me/chanjar/weixin/mp/bean/card Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change 5
5
import me .chanjar .weixin .mp .util .json .WxMpGsonBuilder ;
6
6
7
7
import java .io .Serializable ;
8
+ import java .util .List ;
8
9
9
10
10
11
/**
@@ -15,22 +16,22 @@ public class WxMpCardCodeDepositResult implements Serializable {
15
16
private static final long serialVersionUID = 2955588617765355420L ;
16
17
17
18
/**
18
- * 成功个数
19
+ * 成功的code
19
20
*/
20
21
@ SerializedName ("succ_code" )
21
- private Integer succCode ;
22
+ private List < String > succCode ;
22
23
23
24
/**
24
- * 重复导入的code会自动被过滤
25
+ * 重复导入的code
25
26
*/
26
27
@ SerializedName ("duplicate_code" )
27
- private Integer duplicateCode ;
28
+ private List < String > duplicateCode ;
28
29
29
30
/**
30
- * 失败个数
31
+ * 失败的code
31
32
*/
32
33
@ SerializedName ("fail_code" )
33
- private Integer failCode ;
34
+ private List < String > failCode ;
34
35
35
36
36
37
public static WxMpCardCodeDepositResult fromJson (String json ) {
You can’t perform that action at this time.
0 commit comments