📄 usernormal.java
字号:
package com.longHua.domain;
import java.util.Date;
/**
* Usernormal entity.
*
* @author MyEclipse Persistence Tools
*/
public class UserNormal implements java.io.Serializable {
// Fields
/**
*
*/
private static final long serialVersionUID = -8513378694179875537L;
private Integer uid;
private Integer freeze;
private String realName;
private String userAdress;
private String userPhone;
private String userTelephone;
private String userSex;
private String userType;
private String userStatus;
private Integer companyId;
private String userPictrue;
private Integer userMark;
private String city;
private String zip;
private Integer userLevel;
private Date creatTime;
private Date updateTime;
private Date deleteTime;
private UserReg userReg;
// Constructors
/** default constructor */
public UserNormal() {
}
/** full constructor */
public UserNormal(Integer freeze, String realName, String userAdress,
String userPhone, String userTelephone, String userSex,
String userType, String userStatus, Integer companyId,
String userPictrue, Integer userMark, String city, String zip,
Integer userLevel, Date creatTime, Date updateTime, Date deleteTime) {
this.freeze = freeze;
this.realName = realName;
this.userAdress = userAdress;
this.userPhone = userPhone;
this.userTelephone = userTelephone;
this.userSex = userSex;
this.userType = userType;
this.userStatus = userStatus;
this.companyId = companyId;
this.userPictrue = userPictrue;
this.userMark = userMark;
this.city = city;
this.zip = zip;
this.userLevel = userLevel;
this.creatTime = creatTime;
this.updateTime = updateTime;
this.deleteTime = deleteTime;
}
// Property accessors
public Integer getUid() {
return this.uid;
}
public void setUid(Integer uid) {
this.uid = uid;
}
public Integer getFreeze() {
return this.freeze;
}
public void setFreeze(Integer freeze) {
this.freeze = freeze;
}
public String getRealName() {
return this.realName;
}
public void setRealName(String realName) {
this.realName = realName;
}
public String getUserAdress() {
return this.userAdress;
}
public void setUserAdress(String userAdress) {
this.userAdress = userAdress;
}
public String getUserPhone() {
return this.userPhone;
}
public void setUserPhone(String userPhone) {
this.userPhone = userPhone;
}
public String getUserTelephone() {
return this.userTelephone;
}
public void setUserTelephone(String userTelephone) {
this.userTelephone = userTelephone;
}
public String getUserSex() {
return this.userSex;
}
public void setUserSex(String userSex) {
this.userSex = userSex;
}
public String getUserType() {
return this.userType;
}
public void setUserType(String userType) {
this.userType = userType;
}
public String getUserStatus() {
return this.userStatus;
}
public void setUserStatus(String userStatus) {
this.userStatus = userStatus;
}
public Integer getCompanyId() {
return this.companyId;
}
public void setCompanyId(Integer companyId) {
this.companyId = companyId;
}
public String getUserPictrue() {
return this.userPictrue;
}
public void setUserPictrue(String userPictrue) {
this.userPictrue = userPictrue;
}
public Integer getUserMark() {
return this.userMark;
}
public void setUserMark(Integer userMark) {
this.userMark = userMark;
}
public String getCity() {
return this.city;
}
public void setCity(String city) {
this.city = city;
}
public String getZip() {
return this.zip;
}
public void setZip(String zip) {
this.zip = zip;
}
public Integer getUserLevel() {
return this.userLevel;
}
public void setUserLevel(Integer userLevel) {
this.userLevel = userLevel;
}
public Date getCreatTime() {
return this.creatTime;
}
public void setCreatTime(Date creatTime) {
this.creatTime = creatTime;
}
public Date getUpdateTime() {
return this.updateTime;
}
public void setUpdateTime(Date updateTime) {
this.updateTime = updateTime;
}
public Date getDeleteTime() {
return this.deleteTime;
}
public void setDeleteTime(Date deleteTime) {
this.deleteTime = deleteTime;
}
public UserReg getUserReg() {
return userReg;
}
public void setUserReg(UserReg userReg) {
this.userReg = userReg;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -