101captain
2022-03-14 85cf42314fc04a637f1a44e78c1e476a445bf0f3
springcloud_k8s_panzhihuazhihuishequ/service_partybuilding/src/main/java/com/panzhihua/service_dangjian/model/dos/ComPbMemberRoleDO.java
@@ -7,6 +7,7 @@
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
/**
@@ -87,4 +88,50 @@
     */
    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;
}