package com.xcong.excoin.modules.documentary.dto;
|
|
import javax.validation.constraints.NotNull;
|
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
@Data
|
@ApiModel(value = "UpdateDocumentaryOrderSetDto", description = "参数接受类")
|
public class UpdateDocumentaryOrderSetDto {
|
|
@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;
|
|
}
|