| package cc.mrbird.febs.mall.entity; | 
|   | 
| import cc.mrbird.febs.common.entity.BaseEntity; | 
| import com.baomidou.mybatisplus.annotation.TableName; | 
| import lombok.Data; | 
|   | 
| import java.util.Date; | 
|   | 
| /** | 
|  * @author wzy | 
|  * @date 2021-09-23 | 
|  **/ | 
| @Data | 
| @TableName("mall_order_refund") | 
| public class MallOrderRefund extends BaseEntity { | 
|   | 
|     private Long memberId; | 
|   | 
|     private Long orderId; | 
|   | 
|     private String reason; | 
|   | 
|     private String desp; | 
|   | 
|     private String remark; | 
|   | 
|     /** | 
|      * 1-已申请 2-同意退款 3-驳回退款 4-已提交物流信息 5-已退款 6-已取消 | 
|      */ | 
|     private Integer status; | 
|   | 
|     private String expressNo; | 
|   | 
|     private String expressCom; | 
|   | 
|     /** | 
|      * 1-仅退款不退货 2-退款退货 | 
|      */ | 
|     private Integer type; | 
|   | 
|     /** | 
|      * 退款前订单状态 | 
|      */ | 
|     private Integer beforeStatus; | 
|   | 
|     private Date refundTime; | 
|   | 
|     private String name; | 
|   | 
|     private String phone; | 
|   | 
|     private String address; | 
| } |