xiaoyong931011
2022-08-29 e8e47505ddbb1aaf0b3575f8d8ec569c37268c4a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
package cc.mrbird.febs.mall.dto;
 
import io.swagger.annotations.ApiModel;
import lombok.Data;
 
import java.math.BigDecimal;
 
@Data
@ApiModel(value = "ApplyRefundOrderDto", description = "小程序提交退款申请")
public class ApplyRefundOrderDto {
 
    //退款订单ID
    private Long orderId;
    //退款订单详情ID
    private Long itemId;
    //退款方式 1:微信 2:支付宝 3:其他
    private Integer type;
    //退款状态 1:成功 2:失败 3:退款中
    private Integer state;
    //退款金额
    private BigDecimal amount;
 
    //退款原因
    private String refundReason;
    //退款说明
    private String refundRemark;
    //退款图片
    private String refundPic;
 
}