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.
|
|
|
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 UserEntity
|
|
|
|
* @Author wangc
|
|
|
|
* @date 2020.03.28 13:54
|
|
|
|
*/
|
|
|
|
|
|
|
|
@Data
|
|
|
|
@EqualsAndHashCode(callSuper=false)
|
|
|
|
@TableName("user")
|
|
|
|
public class UserEntity extends BaseEpmetEntity {
|
|
|
|
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 来源App
|
|
|
|
* */
|
|
|
|
private String fromApp;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 来源client
|
|
|
|
* */
|
|
|
|
private String fromClient;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 客户ID
|
|
|
|
*/
|
|
|
|
private String customerId;
|
|
|
|
|
|
|
|
}
|