mitao
2025-02-21 31573d6180d15ef65ed0df9c2732495f40b12663
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
package com.panzhihua.service_dangjian.model.dos;
 
import java.io.Serializable;
import java.util.Date;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
 
/**
 * @program: springcloud_k8s_panzhihuazhihuishequ
 * @description: 党委
 * @author: huang.hongfa weixin hhf9596 qq 959656820
 * @create: 2020-12-01 14:35
 **/
@Data
@TableName("com_pb_member_role")
public class ComPbMemberRoleDO implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * id
     */
    @TableId(type = IdType.ASSIGN_ID)
    private Long id;
 
    /**
     * 电话
     */
    private String phone;
 
    /**
     * 是否注册
     */
    private Integer isReg;
 
    /**
     * 姓名
     */
    private String name;
 
    /**
     * 性别
     */
    private Integer sex;
 
    /**
     * 出生日期
     */
    private Date birthTime;
 
    /**
     * 职位
     */
    private String position;
 
    /**
     * 职位2
     */
    private String positionTwo;
 
    /**
     * 岗位职责
     */
    private String jobResponsibilities;
 
    /**
     * 头像图片路径
     */
    private String photoPath;
 
    /**
     * 创建时间
     */
    private Date createAt;
 
    /**
     * 修改时间
     */
    private Date updateAt;
 
    /**
     * 社区id
     */
    private Long communityId;
 
    /**
     * 党委标签(1.社区党委 2.区域党委委员)
     */
    private Integer type;
 
    /**
     * 入党时间
     */
    @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
    private Date joinTime;
 
    /**
     * 转正时间
     */
    @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
    private Date employmentTime;
 
    /**
     * 职能
     */
    private String function;
 
    /**
     * 特长类别(1.体育类 2.舞蹈类 3.音乐类 4.美术类 5.其他)
     */
    private Integer specialtyCategory;
 
    /**
     * 特长描述
     */
    private String specialtyName;
 
    /**
     * 报道单位id
     */
    private Long checkUnitId;
 
    /**
     * 负责党组织id
     */
    private Long orgId;
 
    /**
     * 身份证
     */
    private String idCard;
}