package com.xcong.excoin.modules.documentary.dto; import java.math.BigDecimal; import javax.validation.constraints.NotNull; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; @Data @ApiModel(value = "DocumentaryOrderSetDto", description = "参数接受类") public class DocumentaryOrderSetDto { @NotNull @ApiModelProperty(value = "交易员ID", example = "1") private Long traderId; @NotNull @ApiModelProperty(value = "跟单合约(多个,且逗号隔开)", example = "BTC/USDT") private String symbols; @NotNull @ApiModelProperty(value = "跟单方式类型1:固定张数2:固定比例", example = "1") private Integer followType; @NotNull @ApiModelProperty(value = "跟单张数或比例", example = "2") private Integer followCnt; @ApiModelProperty(value = "跟单最大持仓张数数量", example = "2") private int maxFollowCnt; }