package com.fgkj.dto;
|
|
import org.apache.ibatis.type.Alias;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
@Alias("User_inf")
|
public class User_inf implements Serializable {
|
private Integer 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; //地址
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "Asia/Shanghai")
|
private Date UBirthDay; //出生日期
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "Asia/Shanghai")
|
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 Integer UBaojiusr; //是否包机人
|
private String UNote; //备注
|
private String PermitgroupName; //权限组名称
|
private String Upassword; //加密密码
|
|
public Integer getUId() {
|
return UId;
|
}
|
|
public void setUId(Integer UId) {
|
this.UId = UId;
|
}
|
|
public String getUSnId() {
|
return USnId;
|
}
|
|
public void setUSnId(String USnId) {
|
this.USnId = USnId;
|
}
|
|
public String getUName() {
|
return UName;
|
}
|
|
public void setUName(String UName) {
|
this.UName = UName;
|
}
|
|
public String getUShenFenId() {
|
return UShenFenId;
|
}
|
|
public void setUShenFenId(String UShenFenId) {
|
this.UShenFenId = UShenFenId;
|
}
|
|
public String getUEmployeeId() {
|
return UEmployeeId;
|
}
|
|
public void setUEmployeeId(String UEmployeeId) {
|
this.UEmployeeId = UEmployeeId;
|
}
|
|
public String getUTelephone() {
|
return UTelephone;
|
}
|
|
public void setUTelephone(String UTelephone) {
|
this.UTelephone = UTelephone;
|
}
|
|
public String getUMobilephone() {
|
return UMobilephone;
|
}
|
|
public void setUMobilephone(String UMobilephone) {
|
this.UMobilephone = UMobilephone;
|
}
|
|
public String getUEmail() {
|
return UEmail;
|
}
|
|
public void setUEmail(String UEmail) {
|
this.UEmail = UEmail;
|
}
|
|
public String getUAddr() {
|
return UAddr;
|
}
|
|
public void setUAddr(String UAddr) {
|
this.UAddr = UAddr;
|
}
|
|
public Date getUBirthDay() {
|
return UBirthDay;
|
}
|
|
public void setUBirthDay(Date UBirthDay) {
|
this.UBirthDay = UBirthDay;
|
}
|
|
public Date getUAccessionDay() {
|
return UAccessionDay;
|
}
|
|
public void setUAccessionDay(Date UAccessionDay) {
|
this.UAccessionDay = UAccessionDay;
|
}
|
|
public String getUSex() {
|
return USex;
|
}
|
|
public void setUSex(String USex) {
|
this.USex = USex;
|
}
|
|
public String getUDepartment() {
|
return UDepartment;
|
}
|
|
public void setUDepartment(String UDepartment) {
|
this.UDepartment = UDepartment;
|
}
|
|
public String getUProTitle() {
|
return UProTitle;
|
}
|
|
public void setUProTitle(String UProTitle) {
|
this.UProTitle = UProTitle;
|
}
|
|
public String getUAuthority() {
|
return UAuthority;
|
}
|
|
public void setUAuthority(String UAuthority) {
|
this.UAuthority = UAuthority;
|
}
|
|
public String getUJobGroup() {
|
return UJobGroup;
|
}
|
|
public void setUJobGroup(String UJobGroup) {
|
this.UJobGroup = UJobGroup;
|
}
|
|
public String getUDuties() {
|
return UDuties;
|
}
|
|
public void setUDuties(String UDuties) {
|
this.UDuties = UDuties;
|
}
|
|
public String getUTasks() {
|
return UTasks;
|
}
|
|
public void setUTasks(String UTasks) {
|
this.UTasks = UTasks;
|
}
|
|
public Integer getUBaojiusr() {
|
return UBaojiusr;
|
}
|
|
public void setUBaojiusr(Integer UBaojiusr) {
|
this.UBaojiusr = UBaojiusr;
|
}
|
|
public String getUNote() {
|
return UNote;
|
}
|
|
public void setUNote(String UNote) {
|
this.UNote = UNote;
|
}
|
|
public String getPermitgroupName() {
|
return PermitgroupName;
|
}
|
|
public void setPermitgroupName(String permitgroupName) {
|
PermitgroupName = permitgroupName;
|
}
|
|
public String getUpassword() {
|
return Upassword;
|
}
|
|
public void setUpassword(String upassword) {
|
Upassword = upassword;
|
}
|
|
@Override
|
public String toString() {
|
return "User_inf{" +
|
"UId=" + UId +
|
", USnId='" + USnId + '\'' +
|
", UName='" + UName + '\'' +
|
", UShenFenId='" + UShenFenId + '\'' +
|
", UEmployeeId='" + UEmployeeId + '\'' +
|
", UTelephone='" + UTelephone + '\'' +
|
", UMobilephone='" + UMobilephone + '\'' +
|
", UEmail='" + UEmail + '\'' +
|
", UAddr='" + UAddr + '\'' +
|
", UBirthDay=" + UBirthDay +
|
", UAccessionDay=" + UAccessionDay +
|
", USex='" + USex + '\'' +
|
", UDepartment='" + UDepartment + '\'' +
|
", UProTitle='" + UProTitle + '\'' +
|
", UAuthority='" + UAuthority + '\'' +
|
", UJobGroup='" + UJobGroup + '\'' +
|
", UDuties='" + UDuties + '\'' +
|
", UTasks='" + UTasks + '\'' +
|
", UBaojiusr=" + UBaojiusr +
|
", UNote='" + UNote + '\'' +
|
", PermitgroupName='" + PermitgroupName + '\'' +
|
", Upassword='" + Upassword + '\'' +
|
'}';
|
}
|
}
|