mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2025-04-05 17:38:05 +08:00
🎨【微信视频号】小店获取售后单信息接口返回类增加部分缺失字段
This commit is contained in:
parent
1c027f12a7
commit
320af9baff
@ -35,4 +35,8 @@ public class AfterSaleDetail implements Serializable {
|
||||
/** 联系电话 */
|
||||
@JsonProperty("tel_number")
|
||||
private String telNumber;
|
||||
|
||||
/** 举证图片media_id列表,根据mediaid获取文件内容接口 */
|
||||
@JsonProperty("media_id_list")
|
||||
private List<String> mediaIdList;
|
||||
}
|
||||
|
@ -57,16 +57,20 @@ public class AfterSaleInfo implements Serializable {
|
||||
|
||||
/** 创建时间 时间戳 秒 */
|
||||
@JsonProperty("create_time")
|
||||
private String createTime;
|
||||
private Long createTime;
|
||||
|
||||
/** 更新时间 时间戳 秒 */
|
||||
@JsonProperty("update_time")
|
||||
private String updateTime;
|
||||
private Long updateTime;
|
||||
|
||||
/** 退款原因 */
|
||||
/** 退款原因(后续新增的原因将不再有字面含义,请参考reason_text) */
|
||||
@JsonProperty("reason")
|
||||
private String reason;
|
||||
|
||||
/** 退款原因解释 */
|
||||
@JsonProperty("reason_text")
|
||||
private String reasonText;
|
||||
|
||||
/** 退款结果 */
|
||||
@JsonProperty("refund_resp")
|
||||
private RefundResp refundResp;
|
||||
|
@ -40,7 +40,7 @@ public class OrderStatusMessage extends WxChannelMessage {
|
||||
Object obj = null;
|
||||
obj = map.get("order_id");
|
||||
if (obj != null) {
|
||||
this.orderId = (String) obj;
|
||||
this.orderId = obj.toString();
|
||||
}
|
||||
obj = map.get("status");
|
||||
if (obj != null) {
|
||||
|
Loading…
Reference in New Issue
Block a user