?? uservo.java
字號:
/**
* Created on 2007-04-29
*/
package com.seavision.PermissionManage.vo;
/**
* @author Administrator
*
*/
public class UserVO {
private int userId;//用戶編號
private String userName; //用戶名
private String userPassWord; //用戶密碼
private String sex; //性別
private String duty; //職務
private String Email; //郵箱地址
private int companyId; //公司編號
private int departmentId;//部門編號
private int Mk;//標記
private int userState;//狀態(tài)
/**
* @return Returns the companyId.
*/
public int getCompanyId() {
return companyId;
}
/**
* @param companyId The companyId to set.
*/
public void setCompanyId(int companyId) {
this.companyId = companyId;
}
/**
* @return Returns the departmentId.
*/
public int getDepartmentId() {
return departmentId;
}
/**
* @param departmentId The departmentId to set.
*/
public void setDepartmentId(int departmentId) {
this.departmentId = departmentId;
}
/**
* @return Returns the duty.
*/
public String getDuty() {
return duty;
}
/**
* @param duty The duty to set.
*/
public void setDuty(String duty) {
this.duty = duty;
}
/**
* @return Returns the email.
*/
public String getEmail() {
return Email;
}
/**
* @param email The email to set.
*/
public void setEmail(String email) {
Email = email;
}
/**
* @return Returns the sex.
*/
public String getSex() {
return sex;
}
/**
* @param sex The sex to set.
*/
public void setSex(String sex) {
this.sex = sex;
}
/**
* @return Returns the userId.
*/
public int getUserId() {
return userId;
}
/**
* @param userId The userId to set.
*/
public void setUserId(int userId) {
this.userId = userId;
}
/**
* @return Returns the userName.
*/
public String getUserName() {
return userName;
}
/**
* @param userName The userName to set.
*/
public void setUserName(String userName) {
this.userName = userName;
}
/**
* @return Returns the userPassWord.
*/
public String getUserPassWord() {
return userPassWord;
}
/**
* @param userPassWord The userPassWord to set.
*/
public void setUserPassWord(String userPassWord) {
this.userPassWord = userPassWord;
}
/**
* @return Returns the mk.
*/
public int getMk() {
return Mk;
}
/**
* @param mk The mk to set.
*/
public void setMk(int mk) {
Mk = mk;
}
/**
* @return Returns the userState.
*/
public int getUserState() {
return userState;
}
/**
* @param userState The userState to set.
*/
public void setUserState(int userState) {
this.userState = userState;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -