You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
85 lines
1.5 KiB
Java
85 lines
1.5 KiB
Java
2 years ago
|
package com.glxp.api.entity.sup;
|
||
|
|
||
|
import com.baomidou.mybatisplus.annotation.IdType;
|
||
|
import com.baomidou.mybatisplus.annotation.TableField;
|
||
|
import com.baomidou.mybatisplus.annotation.TableId;
|
||
|
import com.baomidou.mybatisplus.annotation.TableName;
|
||
|
import java.io.Serializable;
|
||
|
import java.util.Date;
|
||
|
import lombok.Data;
|
||
|
|
||
|
/**
|
||
|
* 企业负责人
|
||
|
*/
|
||
|
@Data
|
||
|
@TableName(value = "user_person")
|
||
|
public class UserPersonEntity implements Serializable {
|
||
|
@TableId(value = "id", type = IdType.INPUT)
|
||
|
private Long id;
|
||
|
|
||
|
/**
|
||
|
* 注册表id
|
||
|
*/
|
||
|
@TableField(value = "registerId")
|
||
|
private Long registerId;
|
||
|
|
||
|
/**
|
||
|
* 企业id
|
||
|
*/
|
||
|
@TableField(value = "companyId")
|
||
|
private Long companyId;
|
||
|
|
||
|
/**
|
||
|
* 用户名
|
||
|
*/
|
||
|
@TableField(value = "userName")
|
||
|
private String userName;
|
||
|
|
||
|
/**
|
||
|
* 密码
|
||
|
*/
|
||
|
@TableField(value = "`password`")
|
||
|
private String password;
|
||
|
|
||
|
/**
|
||
|
* 姓名
|
||
|
*/
|
||
|
@TableField(value = "`name`")
|
||
|
private String name;
|
||
|
|
||
|
/**
|
||
|
* 电话
|
||
|
*/
|
||
|
@TableField(value = "tel")
|
||
|
private String tel;
|
||
|
|
||
|
/**
|
||
|
* 手机
|
||
|
*/
|
||
|
@TableField(value = "mobile")
|
||
|
private String mobile;
|
||
|
|
||
|
/**
|
||
|
* qq
|
||
|
*/
|
||
|
@TableField(value = "qq")
|
||
|
private String qq;
|
||
|
|
||
|
/**
|
||
|
* 微信
|
||
|
*/
|
||
|
@TableField(value = "weChat")
|
||
|
private String weChat;
|
||
|
|
||
|
/**
|
||
|
* 邮箱
|
||
|
*/
|
||
|
@TableField(value = "email")
|
||
|
private String email;
|
||
|
|
||
|
@TableField(value = "createTime")
|
||
|
private Date createTime;
|
||
|
|
||
|
private static final long serialVersionUID = 1L;
|
||
|
}
|