| | |
| | | package com.panzhihua.service_dangjian.model.dos; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.FieldStrategy; |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import lombok.Data; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | import lombok.Data; |
| | | |
| | | /** |
| | | * @program: springcloud_k8s_panzhihuazhihuishequ |
| | |
| | | /** |
| | | * 党员在表中的id |
| | | */ |
| | | @TableId(type = IdType.AUTO) |
| | | @TableId(type = IdType.ASSIGN_ID) |
| | | private Long id; |
| | | |
| | | /** |
| | |
| | | /** |
| | | * 转正时间 |
| | | */ |
| | | @TableField(updateStrategy = FieldStrategy.IGNORED) |
| | | private Date employmentTime; |
| | | |
| | | /** |
| | | * 党员审查结果 |
| | | */ |
| | | private String auditResult; |
| | | private Integer auditResult; |
| | | |
| | | /** |
| | | * 创建时间 |
| | |
| | | * 修改时间 |
| | | */ |
| | | private Date updateAt; |
| | | /** |
| | | * 社区id |
| | | */ |
| | | private Long communityId; |
| | | |
| | | /** |
| | | * 用户id |
| | | */ |
| | | private Long userId; |
| | | |
| | | /** |
| | | * 驳回原因 |
| | | */ |
| | | private String refuseReason; |
| | | |
| | | /** |
| | | * 手机号 |
| | | */ |
| | | private String phone; |
| | | |
| | | /** |
| | | * 党员类型(1.预备党员 2.正式党员) |
| | | */ |
| | | private Integer type; |
| | | |
| | | /** |
| | | * 职位 |
| | | */ |
| | | private String position; |
| | | |
| | | /** |
| | | * 报道单位id |
| | | */ |
| | | private Long checkUnitId; |
| | | |
| | | /** |
| | | * 职能 |
| | | */ |
| | | @TableField("`function`") |
| | | private String function; |
| | | |
| | | /** |
| | | * 特长类别(1.体育类 2.舞蹈类 3.音乐类 4.美术类 5.其他) |
| | | */ |
| | | private Integer specialtyCategory; |
| | | |
| | | /** |
| | | * 特长描述 |
| | | */ |
| | | private String specialtyName; |
| | | |
| | | /** |
| | | * 职位2 |
| | | */ |
| | | private String positionTwo; |
| | | |
| | | /** |
| | | * 党组织名字 |
| | | */ |
| | | private String orgName; |
| | | |
| | | private Long helpCommunityId; |
| | | |
| | | private Long villageId; |
| | | |
| | | private String natureName; |
| | | |
| | | private Integer natureId; |
| | | |
| | | private String otherRemark; |
| | | |
| | | private String helpCommunityName; |
| | | |
| | | private String communityName; |
| | | |
| | | |
| | | /** |
| | | * 党员审查结果 0待审核 1 审核通过 3审核失败 |
| | | */ |
| | | public interface AuditResult { |
| | | int DSH = 0; |
| | | int SHTG = 1; |
| | | int SHBH = 3; |
| | | } |
| | | |
| | | /** |
| | | * 党员类型(1.预备党员 2.正式党员) |
| | | */ |
| | | public interface Type { |
| | | int YBDY = 1; |
| | | int ZSDY = 2; |
| | | } |
| | | } |