| 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 = "RefundExpressDto", description = "退款订单物流接收参数类") | 
| public class RefundExpressDto { | 
|   | 
|     @ApiModelProperty(value = "订单ID", example = "1") | 
|     private Long id; | 
|   | 
|     @ApiModelProperty(value = "物流单号", example = "123") | 
|     private String expressNo; | 
|   | 
|     @ApiModelProperty(value = "物流公司", example = "中通") | 
|     private String expressCom; | 
|   | 
| } |