根据订单id获取退款详情

This commit is contained in:
yanglei 2026-01-04 14:11:35 +08:00
parent 2728ac54e9
commit 0af3befdd8

View File

@ -98,4 +98,64 @@ public class EbikeRefundApplyOrderBaseInfoVo {
*/
private String tradingNumber;
/**
* 主键ID
*/
private Long refundId;
/**
* 微信支付订单号
*/
private String transactionId;
/**
* 退款单号
*/
private String refundOrderId;
/**
* 微信退款状态;0退款成功 1关闭 2退款中 3异常
*/
private Integer refundStatus;
/**
* 退款金额
*/
private BigDecimal refund;
/**
* 问题类型:1-还车点误判 2-禁停区误判 3-服务区外误判 4-车辆故障 5-开启失败 6-无法换车 7-车辆没电
*/
private Integer problemType;
/**
* 退款问题描述
*/
private String problemDescription;
/**
* 退款方式;0原路返回1余额2线下退款
*/
private Integer refundMethod;
/**
* 审核状态 1-已同意 2-申请中 3-已驳回
*/
private Integer processStatus;
/**
* 驳回原因/退款备注
*/
private String remark;
/**
* 驳回/通过时间
*/
private LocalDateTime processTime;
/**
* 退款单创建时间
*/
private LocalDateTime refundCreateTime;
}