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.
udi-cpt-java/src/main/java/com/glxp/api/entity/sup/UserPersonEntity.java

85 lines
1.5 KiB
Java

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;
}