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
| package com.panzhihua.service_dangjian.model.dos;
|
| import com.baomidou.mybatisplus.annotation.TableName;
| import lombok.Data;
|
| import java.io.Serializable;
|
| /**
| * @program: springcloud_k8s_panzhihuazhihuishequ
| * @description: 党组织
| * @author: huang.hongfa weixin hhf9596 qq 959656820
| * @create: 2020-11-30 11:34
| **/
| @Data
| @TableName("com_pb_org")
| public class ComPbOrgDO implements Serializable {
|
| /**
| * 党组织id
| */
| private Long id;
|
| /**
| * 党组织等级
| */
| private Integer level;
|
| /**
| * 父节点id
| */
| private Long parentId;
|
| /**
| * 组织名称
| */
| private String name;
| }
|
|