File tree Expand file tree Collapse file tree 2 files changed +20
-1
lines changed
weixin-java-open/src/main/java/me/chanjar/weixin/open/bean
weixin-java-pay/src/main/java/com/github/binarywang/wxpay/bean/result Expand file tree Collapse file tree 2 files changed +20
-1
lines changed Original file line number Diff line number Diff line change @@ -58,4 +58,22 @@ public class WxOpenMaCodeTemplate implements Serializable {
58
58
*/
59
59
@ SerializedName (value = "sourceMiniProgram" , alternate = "source_miniprogram" )
60
60
private String sourceMiniProgram ;
61
+
62
+ /**
63
+ * 标准模板的场景标签;普通模板不返回该值
64
+ */
65
+ @ SerializedName (value = "auditScene" , alternate = "audit_scene" )
66
+ private Integer auditScene ;
67
+
68
+ /**
69
+ * 标准模板的审核状态;普通模板不返回该值
70
+ */
71
+ @ SerializedName (value = "auditStatus" , alternate = "audit_status" )
72
+ private Integer auditStatus ;
73
+
74
+ /**
75
+ * 标准模板的审核驳回的原因,;普通模板不返回该值
76
+ */
77
+ @ SerializedName (value = "reason" )
78
+ private String reason ;
61
79
}
Original file line number Diff line number Diff line change @@ -228,7 +228,8 @@ protected void loadXml(Document d) {
228
228
@ Builder (builderMethodName = "newBuilder" )
229
229
@ NoArgsConstructor
230
230
@ AllArgsConstructor
231
- public static class RefundRecord {
231
+ public static class RefundRecord implements Serializable {
232
+ private static final long serialVersionUID =1L ;
232
233
/**
233
234
* <pre>
234
235
* 字段名:商户退款单号.
You can’t perform that action at this time.
0 commit comments