退单
This commit is contained in:
@@ -124,6 +124,7 @@ public class BuyOrder implements Serializable {
|
||||
* 3:已完成
|
||||
* 4: 交易失败
|
||||
* 5: 已过期
|
||||
* 6: 已退款
|
||||
*/
|
||||
private String orderStatus;
|
||||
/**
|
||||
@@ -223,4 +224,9 @@ public class BuyOrder implements Serializable {
|
||||
private BookEntity bookEntity;
|
||||
@TableField(exist = false)
|
||||
private String trainingClassIdentity;
|
||||
@TableField(exist = false)
|
||||
private Boolean refundableStatus;
|
||||
@TableField(exist = false)
|
||||
private String refundRemark;
|
||||
|
||||
}
|
||||
|
||||
@@ -23,6 +23,9 @@ public class BuyOrderRefund implements Serializable {
|
||||
private String orderSn;
|
||||
private String payType;
|
||||
private BigDecimal fee;
|
||||
private BigDecimal jfDeduction;
|
||||
private BigDecimal shippingMoney;
|
||||
private int deductShipping;
|
||||
//商品名称
|
||||
private String title;
|
||||
private String remark;
|
||||
|
||||
@@ -0,0 +1,37 @@
|
||||
package com.peanut.modules.common.entity;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.FieldFill;
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* 订单退款进度日志表
|
||||
*
|
||||
* @author yl
|
||||
* @email yl328572838@163.com
|
||||
* @date 2022-08-29 15:27:44
|
||||
*/
|
||||
@Data
|
||||
@TableName("buy_order_refund_log")
|
||||
public class BuyOrderRefundLog implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@TableId
|
||||
private Integer id;
|
||||
private Integer refundId;
|
||||
private Date createTime;
|
||||
private int type;
|
||||
private int status;
|
||||
|
||||
@TableField(exist = false)
|
||||
private String title;
|
||||
|
||||
@TableField(exist = false)
|
||||
private String content;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user