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 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;
|
|
/**
|
* 实名认证状态,0:未认证,1:已认证
|
*/
|
private Integer realStatus;
|
|
/**
|
* 用户状态,0:停用,1:启用
|
*/
|
private Integer status;
|
|
/**
|
* 关注纠纷类型,多个用,隔开
|
*/
|
private String followCaseType;
|
|
/**
|
* 删除状态,0:未删除,1:已删除
|
*/
|
@TableLogic
|
private Integer deleteStatus;
|
|
/**
|
* 客户编号
|
*/
|
private String custId;
|
|
/**
|
* 创建时间
|
*/
|
private Date createTime;
|
|
/**
|
* 更新时间
|
*/
|
private Date updateTime;
|
|
}
|