blob: 731eb2839508024124e83349eb117be9c04d82aa (
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
|
package com.nis.entity;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
import java.util.List;
@Data
@TableName("panel")
public class Panel{
private Integer id;
/**
* 图表名
* */
private String name;
/**
*创建人id
* */
private Integer createBy;
/**
* panel类型
*/
private String type;
/**
* 关联id
*/
private Integer link;
/**
* 是否为内置规则
*/
private Integer buildIn;
/**
* 导入唯一标识
*/
private String seq;
/**
* 父ID
*/
private Integer pid;
/**
* 排序
*/
private Integer weight;
}
|