package cc.mrbird.febs.mall.entity;
|
|
import cc.mrbird.febs.common.entity.BaseEntity;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
|
/**
|
* @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-已退款
|
*/
|
private Integer status;
|
|
private String expressNo;
|
|
private String expressCom;
|
}
|