| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- package com.cyksj.model.entity;
- import lombok.Getter;
- import lombok.Setter;
- import java.math.BigDecimal;
- /*
- *项目名: netflix
- *文件名: RefundOrderDon
- *创建者: JavaZou
- *创建时间:2022/11/8 18:16
- */
- @Getter
- @Setter
- public class RefundOrderDon extends BaseEntity{
- private Long userId;
- private Long orderId;
- /**
- * 商品类型(0商品被删除,1虚物/2实物)
- */
- private Integer goodsType;
- /**
- * 退款订单号
- */
- private String outRefundNo;
- private Long goodsId;
- private Long skuId;
- private String goodsTitle;
- /**
- * 平台规格(金额)
- */
- private String specVal;
- /**
- * 订单总金额
- */
- private BigDecimal totalFee;
- private BigDecimal refundFee;
- private String refundDesc;
- /**
- * 退款方式
- */
- private String refundMethod;
- /**
- * 是否清空余额退款
- * 默认false
- */
- private Boolean isClearBalance;
- private String operator;
- /**
- * 聊天记录
- */
- private String chatImg;
- }
|