package com.panzhihua.service_community.entity;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* 人大代表(ComActDpc)表实体类
|
*
|
* @author makejava
|
* @since 2022-06-07 11:02:04
|
*/
|
@Data
|
@TableName(value = "com_act_dpc")
|
@SuppressWarnings("serial")
|
public class ComActDpc implements Serializable {
|
private static final long serialVersionUID = 853854468470571468L;
|
/**
|
* 主键
|
*/
|
private Long id;
|
/**
|
* 姓名
|
*/
|
private String name;
|
/**
|
* 手机号
|
*/
|
private String phone;
|
/**
|
* 民族
|
*/
|
private String nation;
|
/**
|
* 性别(1.男 2.女 3.未知)
|
*/
|
private Integer sex;
|
/**
|
* 选区
|
*/
|
private String area;
|
/**
|
* 所属家/站
|
*/
|
private String belong;
|
/**
|
* 代表类别
|
*/
|
private String category;
|
/**
|
* 单位职务
|
*/
|
private String position;
|
/**
|
* 照片
|
*/
|
private String photo;
|
/**
|
* 是否删除
|
*/
|
private Boolean isDel;
|
/**
|
* 创建人
|
*/
|
private Long createdBy;
|
/**
|
* 创建时间
|
*/
|
private Date createdAt;
|
/**
|
* 由谁更新
|
*/
|
private Long updatedBy;
|
/**
|
* 最后更新时间
|
*/
|
private Date updatedAt;
|
/**
|
* 社区id
|
*/
|
private Long communityId;
|
|
}
|