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 com.xcong.excoin.modules.otc.dto;
|
| import io.swagger.annotations.ApiModel;
| import io.swagger.annotations.ApiModelProperty;
| import lombok.Data;
|
| @Data
| @ApiModel(value = "OrderApealDto", description = "参数接收类")
| public class OrderApealDto {
|
| @ApiModelProperty(value = "订单ID", example = "1")
| private Long orderId;
|
| /**
| * 申诉原因
| */
| @ApiModelProperty(value = "申诉原因", example = "1")
| private String reason;
|
| /**
| * 申诉内容
| */
| @ApiModelProperty(value = "申诉内容", example = "1")
| private String content;
|
| }
|
|