订单退款
This commit is contained in:
@@ -88,4 +88,9 @@ public class ShopUserFlowDTO implements Serializable {
|
||||
@JSONField(format = "yyyy-MM-dd HH:mm:ss")
|
||||
private LocalDateTime createTime;
|
||||
|
||||
/**
|
||||
* 退款失败原因
|
||||
*/
|
||||
private String failMsg;
|
||||
|
||||
}
|
||||
|
||||
@@ -86,6 +86,10 @@ public class ShopUserFlow implements Serializable {
|
||||
|
||||
@Column(onInsertValue = "now()")
|
||||
private LocalDateTime createTime;
|
||||
/**
|
||||
* 退款失败原因
|
||||
*/
|
||||
private String failMsg;
|
||||
|
||||
|
||||
public BigDecimal getAmount() {
|
||||
|
||||
@@ -254,5 +254,6 @@ public class OrderInfoDTO implements Serializable {
|
||||
* 是否回收站 0-否,1回收站
|
||||
*/
|
||||
private Integer isDel;
|
||||
private String failMsg;
|
||||
|
||||
}
|
||||
|
||||
@@ -264,6 +264,8 @@ public class OrderInfo implements Serializable {
|
||||
*/
|
||||
private Integer isDel;
|
||||
|
||||
private String failMsg;
|
||||
|
||||
|
||||
public String getRefundRemark() {
|
||||
return StrUtil.isBlank(refundRemark) ? "" : refundRemark + " ";
|
||||
|
||||
@@ -27,8 +27,6 @@ public interface OrderInfoService extends IService<OrderInfo> {
|
||||
HistoryOrderVo historyOrder(Long orderId);
|
||||
OrderInfo createOrder(OrderInfoAddDTO param);
|
||||
|
||||
// void updateOrder(OrderInfoUpDTO upDTO);
|
||||
|
||||
OrderInfo checkOrderPay(CheckOrderPay param);
|
||||
|
||||
CzgResult<Object> refundOrder(OrderInfoRefundDTO param);
|
||||
|
||||
Reference in New Issue
Block a user