package com.panzhihua.service_community.model.dos;
|
|
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 java.util.Date;
|
|
/**
|
* @program: springcloud_k8s_panzhihuazhihuishequ
|
* @description: 党员
|
* @author: huang.hongfa weixin hhf9596 qq 959656820
|
* @create: 2020-11-30 10:48
|
**/
|
@Data
|
@TableName("com_pb_member")
|
public class ComPbMemberDO implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 党员在表中的id
|
*/
|
@TableId(type = IdType.ASSIGN_ID)
|
private Long id;
|
|
/**
|
* 所属党组织id
|
*/
|
private Long orgId;
|
|
/**
|
* 身份证号
|
*/
|
private String idCard;
|
|
/**
|
* 姓名
|
*/
|
private String name;
|
|
/**
|
* 头像图片路径
|
*/
|
private String photoPath;
|
|
/**
|
* 入党时间
|
*/
|
private Date joinTime;
|
|
/**
|
* 转正时间
|
*/
|
private Date employmentTime;
|
|
/**
|
* 党员审查结果
|
*/
|
private Integer auditResult;
|
|
/**
|
* 创建时间
|
*/
|
private Date createAt;
|
|
/**
|
* 修改时间
|
*/
|
private Date updateAt;
|
/**
|
* 社区id
|
*/
|
private Long communityId;
|
|
/**
|
* 用户id
|
*/
|
private Long userId;
|
|
/**
|
* 驳回原因
|
*/
|
private String refuseReason;
|
|
private String phone;
|
|
private Long checkUnitId;
|
|
|
}
|