提交 | 用户 | 时间
|
a6de49
|
1 |
package com.iailab.module.data.ind.dto; |
H |
2 |
|
|
3 |
import io.swagger.v3.oas.annotations.tags.Tag; |
|
4 |
import lombok.Data; |
|
5 |
|
|
6 |
import java.io.Serializable; |
|
7 |
import java.math.BigDecimal; |
|
8 |
import java.util.Date; |
|
9 |
|
|
10 |
/** |
|
11 |
* @author PanZhibao |
|
12 |
* @Description |
|
13 |
* @createTime 2024年05月25日 |
|
14 |
*/ |
|
15 |
@Data |
|
16 |
@Tag(name = "指标项") |
|
17 |
public class IndItemDTO implements Serializable { |
|
18 |
private static final long serialVersionUID = 1L; |
|
19 |
|
|
20 |
private String id; |
|
21 |
|
|
22 |
private String itemNo; |
|
23 |
|
|
24 |
private String itemName; |
|
25 |
|
|
26 |
private String itemType; |
|
27 |
|
|
28 |
private BigDecimal coefficient; |
|
29 |
|
|
30 |
private Integer precision; |
|
31 |
|
|
32 |
private String businessType; |
|
33 |
|
|
34 |
private String timeRange; |
|
35 |
|
|
36 |
private String timeGranularity; |
|
37 |
|
|
38 |
private String remark; |
|
39 |
|
|
40 |
private Integer isEnable; |
|
41 |
|
|
42 |
private String creator; |
|
43 |
|
|
44 |
private Date createTime; |
|
45 |
|
|
46 |
private String updater; |
|
47 |
|
|
48 |
private Date updateTime; |
|
49 |
|
|
50 |
private String dataSource; |
|
51 |
|
|
52 |
private String querySql; |
|
53 |
|
|
54 |
private String expression; |
|
55 |
|
|
56 |
private String sqlSelect; |
|
57 |
|
|
58 |
private String sqlWhere; |
|
59 |
|
|
60 |
private IndItemAtomDTO indItemAtom; |
|
61 |
|
|
62 |
private IndItemCalDTO indItemCal; |
|
63 |
} |