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.Min;
|
import javax.validation.constraints.NotNull;
|
|
/**
|
* @Author wzy
|
* @Date 2020/6/5
|
**/
|
@Data
|
@ApiModel(value = "OrderListDto", description = "历史委托订单列表接口参数接受类")
|
public class OrderListDto {
|
|
@NotNull
|
@Min(1)
|
@ApiModelProperty(value = "第几页", example = "1")
|
private int pageNum;
|
|
@NotNull
|
@ApiModelProperty(value = "每页数量", example = "10")
|
private int pageSize;
|
|
@NotNull
|
@ApiModelProperty(value = "币种", example = "BTC/USDT")
|
private String symbol;
|
|
}
|