提交 | 用户 | 时间
|
9d7e02
|
1 |
package com.iailab.module.data.api.ind.dto; |
潘 |
2 |
|
|
3 |
import io.swagger.v3.oas.annotations.tags.Tag; |
|
4 |
import lombok.Data; |
|
5 |
|
|
6 |
import java.io.Serializable; |
|
7 |
import java.util.Date; |
|
8 |
|
|
9 |
/** |
|
10 |
* @author PanZhibao |
|
11 |
* @Description |
|
12 |
* @createTime 2024年08月19日 |
|
13 |
*/ |
|
14 |
@Data |
|
15 |
@Tag(name = "指标项值结果") |
|
16 |
public class ApiIndItemValueDTO implements Serializable { |
|
17 |
private static final long serialVersionUID = 1L; |
|
18 |
|
|
19 |
private String dataTime; |
|
20 |
|
54ad05
|
21 |
private Object dataValue; |
9d7e02
|
22 |
} |