📄 sysuservo.java
字号:
/*
* Created on 2006-10-16 14:49:11
*
* By Yehailong
* Copyright juneng.com.cn, 2005-2006, All rights reserved.
*/
package cn.com.juneng.system.vo;
import java.sql.Timestamp;
import cn.com.juneng.system.common.BaseForm;
/**
* 简单的Domain Object,与数据表映射,提供getter和setter方法
* @author yehailong
*/
public class SysUserVO extends BaseForm{
/**
* property: 用户ID.
*/
private String userId;
/**
* property: 用户登陆名.
*/
private String account;
/**
* property: 用户名称.
*/
private String username;
/**
* property: 用户密码(MD5加密).
*/
private String password;
/**
* property: orgId.
*/
private String orgId;
/**
* property: 当前状态.
*/
private Integer userStatus;
/**
* property: 用户优先级.
*/
private String priority;
/**
* property: 身份证号码.
*/
private String identityCard;
/**
* property: 性别.
*/
private Integer gender;
/**
* property: 生日.
*/
private Timestamp birthday;
/**
* property: 家庭住址.
*/
private String dwellingPlace;
/**
* property: 邮政编码.
*/
private String postalcode;
/**
* property: 联系电话.
*/
private String telephone;
/**
* property: email地址.
*/
private String email;
/**
* property: 移动电话.
*/
private String mobile;
/**
* property: 传真.
*/
private String faxNo;
/**
* property: 昵称.
*/
private String spouseName;
/**
* property: 用户描述.
*/
private String userDesc;
/**
* property: 用户信息最后更改时间.
*/
private Timestamp lastModify;
/**
* 职工ID
*/
private String zgid;
public SysUserVO(){
}
/**
* @param newSysUserVO
*/
public SysUserVO(SysUserVO newSysUserVO){
this.cloneProperties( newSysUserVO);
}
/**
* get property:用户ID
* @return userId
*/
public String getUserId(){
return userId;
}
/**
* set property:用户ID
* @param userId
*/
public void setUserId(String userId){
this.userId = userId;
}
/**
* get property:用户登陆名
* @return account
*/
public String getAccount(){
return account;
}
/**
* set property:用户登陆名
* @param account
*/
public void setAccount(String account){
this.account = account;
}
/**
* get property:用户名称
* @return username
*/
public String getUsername(){
return username;
}
/**
* set property:用户名称
* @param username
*/
public void setUsername(String username){
this.username = username;
}
/**
* get property:用户密码(MD5加密)
* @return password
*/
public String getPassword(){
return password;
}
/**
* set property:用户密码(MD5加密)
* @param password
*/
public void setPassword(String password){
this.password = password;
}
/**
* get property:orgId
* @return orgId
*/
public String getOrgId(){
return orgId;
}
/**
* set property:orgId
* @param orgId
*/
public void setOrgId(String orgId){
this.orgId = orgId;
}
/**
* get property:当前状态
* @return userStatus
*/
public Integer getUserStatus(){
return userStatus;
}
/**
* set property:当前状态
* @param userStatus
*/
public void setUserStatus(Integer userStatus){
this.userStatus = userStatus;
}
/**
* get property:用户优先级
* @return priority
*/
public String getPriority(){
return priority;
}
/**
* set property:用户优先级
* @param priority
*/
public void setPriority(String priority){
this.priority = priority;
}
/**
* get property:身份证号码
* @return identityCard
*/
public String getIdentityCard(){
return identityCard;
}
/**
* set property:身份证号码
* @param identityCard
*/
public void setIdentityCard(String identityCard){
this.identityCard = identityCard;
}
/**
* get property:性别
* @return gender
*/
public Integer getGender(){
return gender;
}
/**
* set property:性别
* @param gender
*/
public void setGender(Integer gender){
this.gender = gender;
}
/**
* get property:生日
* @return birthday
*/
public Timestamp getBirthday(){
return birthday;
}
/**
* set property:生日
* @param birthday
*/
public void setBirthday(Timestamp birthday){
this.birthday = birthday;
}
/**
* get property:家庭住址
* @return dwellingPlace
*/
public String getDwellingPlace(){
return dwellingPlace;
}
/**
* set property:家庭住址
* @param dwellingPlace
*/
public void setDwellingPlace(String dwellingPlace){
this.dwellingPlace = dwellingPlace;
}
/**
* get property:邮政编码
* @return postalcode
*/
public String getPostalcode(){
return postalcode;
}
/**
* set property:邮政编码
* @param postalcode
*/
public void setPostalcode(String postalcode){
this.postalcode = postalcode;
}
/**
* get property:联系电话
* @return telephone
*/
public String getTelephone(){
return telephone;
}
/**
* set property:联系电话
* @param telephone
*/
public void setTelephone(String telephone){
this.telephone = telephone;
}
/**
* get property:email地址
* @return email
*/
public String getEmail(){
return email;
}
/**
* set property:email地址
* @param email
*/
public void setEmail(String email){
this.email = email;
}
/**
* get property:移动电话
* @return mobile
*/
public String getMobile(){
return mobile;
}
/**
* set property:移动电话
* @param mobile
*/
public void setMobile(String mobile){
this.mobile = mobile;
}
/**
* get property:传真
* @return faxNo
*/
public String getFaxNo(){
return faxNo;
}
/**
* set property:传真
* @param faxNo
*/
public void setFaxNo(String faxNo){
this.faxNo = faxNo;
}
/**
* get property:昵称
* @return spouseName
*/
public String getSpouseName(){
return spouseName;
}
/**
* set property:昵称
* @param spouseName
*/
public void setSpouseName(String spouseName){
this.spouseName = spouseName;
}
/**
* get property:用户描述
* @return userDesc
*/
public String getUserDesc(){
return userDesc;
}
/**
* set property:用户描述
* @param userDesc
*/
public void setUserDesc(String userDesc){
this.userDesc = userDesc;
}
/**
* get property:用户信息最后更改时间
* @return lastModify
*/
public Timestamp getLastModify(){
return lastModify;
}
/**
* set property:用户信息最后更改时间
* @param lastModify
*/
public void setLastModify(Timestamp lastModify){
this.lastModify = lastModify;
}
public String getZgid() {
return zgid;
}
public void setZgid(String zgid) {
this.zgid = zgid;
}
public Object clone() {
return new SysUserVO(this);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -