4 天以前 8f7c42bb0bced4697755299f67483be11da3e44d
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
31
32
package cn.iocoder.yudao.module.aftersales.api.dto;
 
import lombok.Data;
 
import java.math.BigDecimal;
import java.time.LocalDateTime;
 
/**
 * 售后退货申请响应 DTO(供 RPC 调用使用)
 */
@Data
public class AfterSaleReturnRespDTO {
 
    private Long id;
    private String no;
    private Long ticketId;
    private Long customerId;
    private Long saleOrderId;
    private Integer returnType;
    private String returnReason;
    private BigDecimal totalReturnPrice;
    private BigDecimal actualRefundPrice;
    private Integer status;
    private Long mesReturnId;
    private String mesReturnCode;
    private String qualityResult;
    private String qualityReportUrl;
    private LocalDateTime returnInboundTime;
    private LocalDateTime refundTime;
    private LocalDateTime createTime;
 
}