Helius
2021-09-24 2351cfc36d87f74ba1aa267e5554e16781dfb44d
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
package cc.mrbird.febs.mall.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author wzy
 * @date 2021-09-23
 **/
@Data
@ApiModel(value = "AddRefundDto", description = "提交退款申请参数接收类")
public class AddRefundDto {
 
    @ApiModelProperty(value = "订单ID", example = "1")
    private Long id;
 
    @ApiModelProperty(value = "退款类型", example = "1-仅退款不退货2-退款退货")
    private Integer type;
 
    @ApiModelProperty(value = "退款原因", example = "太差了")
    private String reason;
 
    @ApiModelProperty(value = "描述", example = "描述")
    private String desp;
}