lidongdong
2023-11-14 ce4a770744d7a0b4e4ea3b5101556b94e72bdf1c
springcloud_k8s_panzhihuazhihuishequ/service_partybuilding/src/main/java/com/panzhihua/service_dangjian/model/dos/ComPbMemberRoleDO.java
@@ -1,11 +1,14 @@
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 lombok.Data;
import java.io.Serializable;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
/**
 * @program: springcloud_k8s_panzhihuazhihuishequ
@@ -22,21 +25,113 @@
    /**
     * id
     */
    @TableId(type = IdType.AUTO)
    @TableId(type = IdType.ASSIGN_ID)
    private Long id;
    /**
     * 党员id
     * 电话
     */
    private Long memberId;
    private String phone;
    /**
     * 党员身份id
     * 是否注册
     */
    private Long roleId;
    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;
}