| | |
| | | package com.zhitan.statisticalAnalysis.domain.vo; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | |
| | | private String costLabel; |
| | | |
| | | /** |
| | | * 累积量 |
| | | */ |
| | | @ApiModelProperty(value = "累积量") |
| | | @JsonFormat(shape = JsonFormat.Shape.STRING) |
| | | private BigDecimal accumulation; |
| | | |
| | | /** |
| | | * 费用 |
| | | */ |
| | | @ApiModelProperty(value = "费用") |
| | | @JsonFormat(shape = JsonFormat.Shape.STRING) |
| | | private BigDecimal cost; |
| | | |
| | | /** |
| | | * 累积量key集合 |
| | | */ |
| | | @ApiModelProperty(value = "累积量key集合") |