File tree 1 file changed +40
-3
lines changed
weixin-java-pay/src/main/java/com/github/binarywang/wxpay/bean/complaint 1 file changed +40
-3
lines changed Original file line number Diff line number Diff line change 10
10
11
11
/**
12
12
* 微信消费者投诉2.0
13
- * 查询投诉单列表返回的实体
13
+ * 查询投诉单列表接口 和 查询投诉单详情接口返回的实体
14
14
*
15
15
* @author <a href="https://gitee.com/jeequan/jeepay">jmdhappy</a>
16
16
* @date 2022-3-19
17
17
*/
18
18
@ Data
19
19
public class ComplaintDetailResult implements Serializable {
20
-
21
20
private static final long serialVersionUID = -6201692411535927503L ;
22
21
23
22
/**
@@ -61,7 +60,7 @@ public class ComplaintDetailResult implements Serializable {
61
60
* </pre>
62
61
*/
63
62
@ SerializedName ("complainted_mchid" )
64
- private String complaintedMchid ;
63
+ private String complainedMchid ;
65
64
66
65
/**
67
66
* <pre>
@@ -233,4 +232,42 @@ public static class ComplaintOrder implements Serializable {
233
232
*/
234
233
@ SerializedName ("user_complaint_times" )
235
234
private Integer userComplaintTimes ;
235
+
236
+ /**
237
+ * <pre>
238
+ * 字段名:问题类型
239
+ * 是否必填:否
240
+ * 描述:问题类型为申请退款的单据是需要最高优先处理的单据
241
+ * REFUND:申请退款
242
+ * SERVICE_NOT_WORK:服务权益未生效
243
+ * OTHERS:其他类型
244
+ * 示例值:REFUND
245
+ * </pre>
246
+ */
247
+ @ SerializedName ("problem_type" )
248
+ private String problemType ;
249
+
250
+ /**
251
+ * <pre>
252
+ * 字段名:用户投诉次数
253
+ * 是否必填:否
254
+ * 描述:仅当问题类型为申请退款时, 有值, (单位:分)
255
+ * 示例值:10
256
+ * </pre>
257
+ */
258
+ @ SerializedName ("apply_refund_amount" )
259
+ private Integer applyRefundAmount ;
260
+
261
+ /**
262
+ * <pre>
263
+ * 字段名:用户投诉次数
264
+ * 是否必填:否
265
+ * 描述:用户标签列表
266
+ * TRUSTED:可信,此类用户满足极速退款条件
267
+ * OTHERS:其它,此类用户不满足极速退款条件
268
+ * 示例值:[TRUSTED]
269
+ * </pre>
270
+ */
271
+ @ SerializedName ("user_tag_list" )
272
+ private String [] userTagList ;
236
273
}
You can’t perform that action at this time.
0 commit comments