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;
|
|
|
/**
|
* @author lyq
|
* @date 2021-09-23 16:39:05
|
* describe 群团组织成员表实体类
|
*/
|
|
@Data
|
@TableName("com_cluster_organization_member")
|
public class ComClusterOrganizationMemberDO implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 主键id
|
*/
|
@TableId(type = IdType.ASSIGN_ID)
|
private Long id;
|
|
/**
|
* 所属组织id
|
*/
|
private Long clusterId;
|
|
/**
|
* 组织成员姓名
|
*/
|
private String name;
|
|
/**
|
* 组织成员电话
|
*/
|
private String phone;
|
|
/**
|
* 组织成员住址
|
*/
|
private String address;
|
|
/**
|
* 组织成员照片
|
*/
|
private String imageUrl;
|
|
/**
|
* 组织成员职务
|
*/
|
private String job;
|
|
/**
|
* 组织成员身份证号码
|
*/
|
private String idCard;
|
|
/**
|
* 民族编号(字典表中dict_value)
|
*/
|
private String nationCode;
|
|
/**
|
* 状态(1.启用 2.禁用)
|
*/
|
private Integer status;
|
|
/**
|
* 是否删除(1.是 2.否)
|
*/
|
private Integer isDel;
|
|
/**
|
* 创建时间
|
*/
|
private Date createAt;
|
|
/**
|
* 修改时间
|
*/
|
private Date updateAt;
|
|
/**
|
* 社区id
|
*/
|
private Long communityId;
|
|
/**
|
* 是否枚举(1.是 2.否)
|
*/
|
public interface isOk{
|
int yes = 1;
|
int no = 2;
|
}
|
|
@Override
|
public String toString() {
|
return "ComClusterOrganizationMemberDO{" +
|
"id=" + id +
|
", clusterId=" + clusterId +
|
", name=" + name +
|
", phone=" + phone +
|
", address=" + address +
|
", imageUrl=" + imageUrl +
|
", job=" + job +
|
", idCard=" + idCard +
|
", nationCode=" + nationCode +
|
", status=" + status +
|
", isDel=" + isDel +
|
", createAt=" + createAt +
|
", updateAt=" + updateAt +
|
"}";
|
}
|
}
|