package cc.mrbird.febs.mall.dto;
|
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import javax.validation.constraints.NotBlank;
|
import javax.validation.constraints.NotNull;
|
|
@Data
|
@ApiModel(value = "ApiOrderSellComplainDto", description = "参数接收类")
|
public class ApiOrderSellComplainDto {
|
|
@NotNull(message = "类型参数不能为空")
|
@ApiModelProperty(value = "类型:1:提现(卖单), 2:预约(买单)", example = "1")
|
private Integer orderType;
|
|
@NotNull(message = "交易密码不能为空")
|
private Long sellRecordId;//ApiOrderSellRecordInfoVo的id,提现子表的ID
|
|
@NotBlank(message = "内容不能为空")
|
@ApiModelProperty(value = "内容", example = "1")
|
private String description;
|
|
}
|