提交 | 用户 | 时间
|
2a6f08
|
1 |
package com.iailab.module.data.ind.value.vo; |
潘 |
2 |
|
|
3 |
import com.alibaba.excel.annotation.ExcelIgnoreUnannotated; |
|
4 |
import com.alibaba.excel.annotation.ExcelProperty; |
|
5 |
import io.swagger.v3.oas.annotations.media.Schema; |
|
6 |
import lombok.Data; |
|
7 |
|
|
8 |
import java.math.BigDecimal; |
|
9 |
|
|
10 |
/** |
|
11 |
* @author PanZhibao |
|
12 |
* @Description |
|
13 |
* @createTime 2024年09月11日 |
|
14 |
*/ |
|
15 |
@Schema(description = "数据平台 - 指标值 Response VO") |
|
16 |
@Data |
|
17 |
@ExcelIgnoreUnannotated |
|
18 |
public class IndItemValueRespVO { |
|
19 |
|
|
20 |
@Schema(description = "ID", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024") |
|
21 |
@ExcelProperty("ID") |
|
22 |
private String id; |
|
23 |
|
|
24 |
@Schema(description = "指标编码", example = "") |
|
25 |
private String itemNo; |
|
26 |
|
|
27 |
@Schema(description = "数据时间", example = "") |
|
28 |
private String dataTime; |
|
29 |
|
|
30 |
@Schema(description = "数据值", example = "") |
|
31 |
private BigDecimal dataValue; |
|
32 |
} |