package com.terra.lfdcexp.entity;
|
|
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;
|
|
/**
|
* ${comments}
|
*
|
* @author chenshun
|
* @email sunlightcs@gmail.com
|
* @date 2023-09-21 19:07:03
|
*/
|
@Data
|
@TableName("sys_user")
|
public class SysUserEntity implements Serializable {
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* $column.comments
|
*/
|
@TableId
|
private String id;
|
/**
|
* $column.comments
|
*/
|
private String companyId;
|
/**
|
* $column.comments
|
*/
|
private String orgId;
|
|
@TableField(exist = false)
|
private String orgName;
|
/**
|
* $column.comments
|
*/
|
private String loginName;
|
/**
|
* $column.comments
|
*/
|
private String no;
|
/**
|
* $column.comments
|
*/
|
private String name;
|
/**
|
* $column.comments
|
*/
|
private String email;
|
/**
|
* $column.comments
|
*/
|
private String phone;
|
/**
|
* $column.comments
|
*/
|
private String mobile;
|
/**
|
* $column.comments
|
*/
|
private String userType;
|
/**
|
* $column.comments
|
*/
|
private String photo;
|
/**
|
* $column.comments
|
*/
|
private String loginIp;
|
/**
|
* $column.comments
|
*/
|
private Date loginDate;
|
/**
|
* $column.comments
|
*/
|
private String loginFlag;
|
/**
|
* $column.comments
|
*/
|
private String createBy;
|
/**
|
* $column.comments
|
*/
|
private Date createDate;
|
/**
|
* $column.comments
|
*/
|
private String updateBy;
|
/**
|
* $column.comments
|
*/
|
private Date updateDate;
|
/**
|
* $column.comments
|
*/
|
private String remarks;
|
/**
|
* $column.comments
|
*/
|
private String delFlag;
|
/**
|
* $column.comments
|
*/
|
private Integer sort;
|
/**
|
* $column.comments
|
*/
|
private String posCode;
|
/**
|
* $column.comments
|
*/
|
private String token;
|
/**
|
* $column.comments
|
*/
|
private String partyCost;
|
/**
|
* $column.comments
|
*/
|
private String gender;
|
/**
|
* $column.comments
|
*/
|
private String birthday;
|
/**
|
* $column.comments
|
*/
|
private String education;
|
/**
|
* $column.comments
|
*/
|
private String residence;
|
/**
|
* $column.comments
|
*/
|
private String nation;
|
|
}
|