package com.xcong.excoin.modules.otc.dto;
|
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import java.util.List;
|
|
@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 List<String> content;
|
|
}
|