package com.xcong.excoin.modules.contract.parameter.dto; 
 | 
  
 | 
import io.swagger.annotations.ApiModel; 
 | 
import io.swagger.annotations.ApiModelProperty; 
 | 
import lombok.Data; 
 | 
  
 | 
import javax.validation.constraints.NotNull; 
 | 
  
 | 
/** 
 | 
 * @Author wzy 
 | 
 * @Date 2020/6/5 
 | 
 **/ 
 | 
@Data 
 | 
@ApiModel(value = "ChangeLeverRateDto", description = "调整杠杆接口接收参数类") 
 | 
public class ChangeLeverRateDto { 
 | 
  
 | 
    @NotNull 
 | 
    @ApiModelProperty(value = "杠杆", example = "100") 
 | 
    private int leverRate; 
 | 
  
 | 
    @NotNull 
 | 
    @ApiModelProperty(value = "币种", example = "BTC/USDT") 
 | 
    private String symbol; 
 | 
} 
 |