| | |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.math.BigDecimal; |
| | |
| | | @ApiModel(value = "AKLineLimitVo", description = "K线数据") |
| | | public class AKLineLimitVo { |
| | | |
| | | @ApiModelProperty(value = "价格") |
| | | private BigDecimal openPrice; |
| | | |
| | | private BigDecimal closePrice; |
| | | |
| | | private BigDecimal lowestPrice; |
| | | |
| | | private BigDecimal highestPrice; |
| | | |
| | | @ApiModelProperty(value = "时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private Date createTime; |
| | | |