|  |  |  | 
|---|
|  |  |  | package com.xcong.excoin.modules.contract.parameter.vo; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import com.fasterxml.jackson.annotation.JsonFormat; | 
|---|
|  |  |  | import io.swagger.annotations.ApiModel; | 
|---|
|  |  |  | import io.swagger.annotations.ApiModelProperty; | 
|---|
|  |  |  | import lombok.Data; | 
|---|
|  |  |  | 
|---|
|  |  |  | private BigDecimal entrustPrice; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "委托数量") | 
|---|
|  |  |  | private int symbolsCnt; | 
|---|
|  |  |  | private int symbolCnt; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "保证金") | 
|---|
|  |  |  | private BigDecimal bondAmount; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @JsonFormat(pattern = "yyyy-MM-dd HH:mm", timezone="GMT+8") | 
|---|
|  |  |  | @ApiModelProperty(value = "委托时间") | 
|---|
|  |  |  | private Date entrustTime; | 
|---|
|  |  |  |  | 
|---|