| | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.io.Serializable; |
| | |
| | | * 党员在表中的id |
| | | */ |
| | | @TableId(type = IdType.AUTO) |
| | | private Integer id; |
| | | private Long id; |
| | | |
| | | /** |
| | | * 所属党组织id |
| | | */ |
| | | private Integer orgId; |
| | | private Long orgId; |
| | | |
| | | /** |
| | | * 身份证号 |
| | |
| | | /** |
| | | * 党员审查结果 |
| | | */ |
| | | private String auditResult; |
| | | private Integer auditResult; |
| | | |
| | | /** |
| | | * 创建时间 |
| | |
| | | * 修改时间 |
| | | */ |
| | | private Date updateAt; |
| | | /** |
| | | * 社区id |
| | | */ |
| | | private Long communityId; |
| | | |
| | | /** |
| | | * 用户id |
| | | */ |
| | | private Long userId; |
| | | |
| | | } |