Skip to content

Commit 9a32876

Browse files
committed
🎨 投诉单详情接口返回实体类增加几个字段
1 parent 0f9e75a commit 9a32876

File tree

1 file changed

+40
-3
lines changed

1 file changed

+40
-3
lines changed

weixin-java-pay/src/main/java/com/github/binarywang/wxpay/bean/complaint/ComplaintDetailResult.java

Lines changed: 40 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,13 @@
1010

1111
/**
1212
* 微信消费者投诉2.0
13-
* 查询投诉单列表返回的实体
13+
* 查询投诉单列表接口 和 查询投诉单详情接口返回的实体
1414
*
1515
* @author <a href="https://gitee.com/jeequan/jeepay">jmdhappy</a>
1616
* @date 2022-3-19
1717
*/
1818
@Data
1919
public class ComplaintDetailResult implements Serializable {
20-
2120
private static final long serialVersionUID = -6201692411535927503L;
2221

2322
/**
@@ -61,7 +60,7 @@ public class ComplaintDetailResult implements Serializable {
6160
* </pre>
6261
*/
6362
@SerializedName("complainted_mchid")
64-
private String complaintedMchid;
63+
private String complainedMchid;
6564

6665
/**
6766
* <pre>
@@ -233,4 +232,42 @@ public static class ComplaintOrder implements Serializable {
233232
*/
234233
@SerializedName("user_complaint_times")
235234
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;
236273
}

0 commit comments

Comments
 (0)