blob: e7b832d105721c3bd5b5b713c96971b864ed8b0c (
plain)
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
package com.nis.entity;
import java.util.Date;
import java.util.List;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
@Data
@TableName("visual_chart")
public class VisualChart {
@TableId(type = IdType.INPUT)
private Integer id;
private String name;
private Integer panelId;
private Integer groupId;
private Integer span;
private Integer height;
private Integer updateBy;
private Date updateAt;
private String type;
private Integer unit;
private Integer weight;
private Object param;
private Integer pid;
private Integer buildIn;
private String remark;
private String seq;
@TableField(exist = false)
private List<VisualChartElement> elements;
private Integer varType;
private Integer varId;
}
|