package com.yckj.bean;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
import lombok.Data;
|
|
/**
|
* tb_user_inf
|
* @author
|
*/
|
@Data
|
public class TbUserInf implements Serializable {
|
private Long uid;
|
|
private String usnid;
|
|
private String uname;
|
|
private String ushenfenid;
|
|
private String uemployeeid;
|
|
private String utelephone;
|
|
private String umobilephone;
|
|
private String uemail;
|
|
private String uaddr;
|
|
private Date ubirthday;
|
|
private Date uaccessionday;
|
|
private String usex;
|
|
private String udepartment;
|
|
private String uprotitle;
|
|
private String uauthority;
|
|
private String ujobgroup;
|
|
private String uduties;
|
|
private String utasks;
|
|
private Boolean ubaojiusr;
|
|
private String unote;
|
|
private String upassword;
|
|
private static final long serialVersionUID = 1L;
|
}
|