forked from rongchao/epmet-cloud-rizhao
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
83 lines
1.2 KiB
83 lines
1.2 KiB
package com.epmet.entity;
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import com.epmet.commons.mybatis.entity.BaseEpmetEntity;
|
|
import lombok.Data;
|
|
import lombok.EqualsAndHashCode;
|
|
|
|
/**
|
|
* @Description
|
|
* @ClassName UserWechatEntity
|
|
* @Author wangc
|
|
* @date 2020.03.28 13:57
|
|
*/
|
|
@Data
|
|
@EqualsAndHashCode(callSuper=false)
|
|
@TableName("user_wechat")
|
|
public class UserWechatEntity extends BaseEpmetEntity {
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
/**
|
|
* 用户ID
|
|
* */
|
|
private String userId;
|
|
|
|
/**
|
|
* 微信openId
|
|
*/
|
|
private String wxOpenId;
|
|
|
|
/**
|
|
* 微信unionId
|
|
*/
|
|
private String unionId;
|
|
|
|
/**
|
|
* 手机号
|
|
*/
|
|
private String mobile;
|
|
|
|
/**
|
|
* 昵称
|
|
*/
|
|
private String nickname;
|
|
|
|
/**
|
|
* 性别:0.未知 1.男性2女性
|
|
*/
|
|
private Integer sex;
|
|
|
|
/**
|
|
* 头像
|
|
*/
|
|
private String headImgUrl;
|
|
|
|
/**
|
|
* 国家
|
|
*/
|
|
private String country;
|
|
|
|
/**
|
|
* 省份
|
|
*/
|
|
private String province;
|
|
|
|
/**
|
|
* 城市
|
|
*/
|
|
private String city;
|
|
|
|
/**
|
|
* 语言
|
|
*/
|
|
private String language;
|
|
|
|
/**
|
|
* 客户ID
|
|
*/
|
|
private String customerId;
|
|
|
|
|
|
}
|
|
|