xiaoyong931011
2023-09-06 832adfae7b7d3869c833b3c700232155e6600526
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package cc.mrbird.febs.dapp.vo;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
import java.util.Date;
 
@Data
@ApiModel(value = "AKLineVo", description = "K线数据")
public class AKLineVo {
 
    @ApiModelProperty(value = "openPrice")
    private BigDecimal openPrice;
 
 
    @ApiModelProperty(value = "closePrice")
    private BigDecimal closePrice;
 
 
    @ApiModelProperty(value = "lowestPrice")
    private BigDecimal lowestPrice;
 
 
    @ApiModelProperty(value = "highestPrice")
    private BigDecimal highestPrice;
 
 
    @ApiModelProperty(value = "时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date createTime;
 
}