!1103 【优化】补全退款订单字段

Merge pull request !1103 from 杨宇庆/N/A
This commit is contained in:
芋道源码 2024-10-13 09:10:36 +00:00 committed by Gitee
commit 1b925cf221
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
3 changed files with 11 additions and 3 deletions

View File

@ -40,7 +40,10 @@ public class PayOrderRespDTO {
* 枚举 {@link PayOrderStatusEnum} * 枚举 {@link PayOrderStatusEnum}
*/ */
private Integer status; private Integer status;
/**
* 订单支付成功时间
*/
private LocalDateTime successTime;
// ========== 渠道相关字段 ========== // ========== 渠道相关字段 ==========
} }

View File

@ -17,7 +17,12 @@ public class PayRefundRespDTO {
* 退款单编号 * 退款单编号
*/ */
private Long id; private Long id;
/**
* 渠道编码
*
* 枚举 PayChannelEnum
*/
private String channelCode;
// ========== 退款相关字段 ========== // ========== 退款相关字段 ==========
/** /**
* 退款状态 * 退款状态

View File

@ -59,7 +59,7 @@ public class PayRefundDO extends BaseDO {
*/ */
private Long channelId; private Long channelId;
/** /**
* 商户编码 * 渠道编码
* *
* 枚举 {@link PayChannelEnum} * 枚举 {@link PayChannelEnum}
*/ */