🎨【微信视频号】小店获取售后单信息接口返回类增加部分缺失字段

This commit is contained in:
VinkuGor
2023-07-19 07:35:55 +00:00
committed by Binary Wang
parent 1c027f12a7
commit 320af9baff
3 changed files with 12 additions and 4 deletions

View File

@ -35,4 +35,8 @@ public class AfterSaleDetail implements Serializable {
/** 联系电话 */ /** 联系电话 */
@JsonProperty("tel_number") @JsonProperty("tel_number")
private String telNumber; private String telNumber;
/** 举证图片media_id列表根据mediaid获取文件内容接口 */
@JsonProperty("media_id_list")
private List<String> mediaIdList;
} }

View File

@ -57,16 +57,20 @@ public class AfterSaleInfo implements Serializable {
/** 创建时间 时间戳 秒 */ /** 创建时间 时间戳 秒 */
@JsonProperty("create_time") @JsonProperty("create_time")
private String createTime; private Long createTime;
/** 更新时间 时间戳 秒 */ /** 更新时间 时间戳 秒 */
@JsonProperty("update_time") @JsonProperty("update_time")
private String updateTime; private Long updateTime;
/** 退款原因 */ /** 退款原因后续新增的原因将不再有字面含义请参考reason_text */
@JsonProperty("reason") @JsonProperty("reason")
private String reason; private String reason;
/** 退款原因解释 */
@JsonProperty("reason_text")
private String reasonText;
/** 退款结果 */ /** 退款结果 */
@JsonProperty("refund_resp") @JsonProperty("refund_resp")
private RefundResp refundResp; private RefundResp refundResp;

View File

@ -40,7 +40,7 @@ public class OrderStatusMessage extends WxChannelMessage {
Object obj = null; Object obj = null;
obj = map.get("order_id"); obj = map.get("order_id");
if (obj != null) { if (obj != null) {
this.orderId = (String) obj; this.orderId = obj.toString();
} }
obj = map.get("status"); obj = map.get("status");
if (obj != null) { if (obj != null) {