package cn.huge.module.cust.dto;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableLogic;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
|
import java.util.Date;
|
|
/**
|
* @title: 公众用户表数据传输类
|
* @description: 公众用户表数据传输类
|
* @company:hugeinfo
|
* @author: liyj
|
* @time: 2022-04-12 11:38:03
|
* @version 1.0.0
|
*/
|
@Data
|
public class PaUserDTO {
|
|
/**
|
* 当事人编号
|
*/
|
private String id;
|
|
/**
|
* 姓名
|
*/
|
private String trueName;
|
|
/**
|
* 性别
|
*/
|
private String sex;
|
|
/**
|
* 性别名称
|
*/
|
private String sexName;
|
|
/**
|
* 手机号码
|
*/
|
private String mobile;
|
|
/**
|
* 证件类型
|
*/
|
private String idcardType;
|
|
/**
|
* 证件类型名称
|
*/
|
private String idcardTypeName;
|
|
/**
|
* 证件号码
|
*/
|
private String idcard;
|
|
/**
|
* 电子邮箱
|
*/
|
private String email;
|
|
/**
|
* 微信号
|
*/
|
private String wechat;
|
|
/**
|
* QQ号
|
*/
|
private String qq;
|
|
/**
|
* 现居地省
|
*/
|
private String prov;
|
|
/**
|
* 现居地省名称
|
*/
|
private String provName;
|
|
/**
|
* 现居地市
|
*/
|
private String city;
|
|
/**
|
* 现居地市名称
|
*/
|
private String cityName;
|
|
/**
|
* 现居地区
|
*/
|
private String area;
|
|
/**
|
* 现居地区名称
|
*/
|
private String areaName;
|
|
/**
|
* 现居地街道
|
*/
|
private String road;
|
|
/**
|
* 现居地街道名称
|
*/
|
private String roadName;
|
|
/**
|
* 现居地社区
|
*/
|
private String village;
|
|
/**
|
* 现居地社区名称
|
*/
|
private String villageName;
|
|
/**
|
* 现居地详细地址
|
*/
|
private String addr;
|
|
/**
|
* 头像
|
*/
|
private String avatar;
|
|
/**
|
* 组织编号
|
*/
|
private String unitId;
|
|
/**
|
* 组织名称
|
*/
|
private String unitName;
|
|
/**
|
* 实名认证状态,1:通过,99:未通过(默认)
|
*/
|
private String realStatus;
|
|
/**
|
* 人脸认证状态,1:已认证,99:未认证(默认)
|
*/
|
private String faceStatus;
|
|
/**
|
* 用户状态,1:有效(默认),2:停用
|
*/
|
private String status;
|
|
/**
|
* 关注纠纷类型,多个用,隔开
|
*/
|
private String followCaseType;
|
|
/**
|
* 删除状态,1:未删除(默认),99:已删除
|
*/
|
@TableLogic
|
private String deleteStatus;
|
|
/**
|
* 客户编号
|
*/
|
private String custId;
|
|
/**
|
* 创建时间
|
*/
|
private Date createTime;
|
|
/**
|
* 更新时间
|
*/
|
private Date updateTime;
|
|
}
|