| | |
| | | package com.panzhihua.service_dangjian.model.dos; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import lombok.Data; |
| | | |
| | | import java.io.Serializable; |
| | |
| | | * @create: 2020-11-30 11:34 |
| | | **/ |
| | | @Data |
| | | @TableName("com_pb_org") |
| | | public class ComPbOrgDO implements Serializable { |
| | | |
| | | /** |
| | | * 党组织id |
| | | */ |
| | | private Integer id; |
| | | @TableId(type= IdType.AUTO) |
| | | private Long id; |
| | | |
| | | /** |
| | | * 党组织等级 |
| | |
| | | /** |
| | | * 父节点id |
| | | */ |
| | | private Integer parentId; |
| | | private Long parentId; |
| | | |
| | | /** |
| | | * 组织名称 |
| | | */ |
| | | private String name; |
| | | |
| | | /** |
| | | * 社区id |
| | | */ |
| | | private Long communityId; |
| | | /** |
| | | * 状态 1 启用 2 禁用 |
| | | */ |
| | | private Integer status; |
| | | } |