?? userrolevo.java
字號:
package com.yuanchung.sales.vo.user;
public class UserRoleVo implements java.io.Serializable {
private Integer roleId;//角色ID
private String roleName;//角色名稱
private Integer userId;//用戶ID
private String userName;
private String password;
private String familyName;
private String position;
private String email;
private String phone;
private String type;
public UserRoleVo(Integer roleId, String roleName, Integer userId, String userName, String password,
String familyName, String position, String email, String phone,
String type) {
this.roleId = roleId;
this.roleName = roleName;
this.userId = userId;
this.userName = userName;
this.password = password;
this.familyName = familyName;
this.position = position;
this.email = email;
this.phone = phone;
this.type = type;
}
public Integer getRoleId() {
return roleId;
}
public void setRoleId(Integer roleId) {
this.roleId = roleId;
}
public String getRoleName() {
return roleName;
}
public void setRoleName(String roleName) {
this.roleName = roleName;
}
public Integer getUserId() {
return userId;
}
public void setUserId(Integer userId) {
this.userId = userId;
}
public String getUserName() {
return userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public String getFamilyName() {
return familyName;
}
public void setFamilyName(String familyName) {
this.familyName = familyName;
}
public String getPosition() {
return position;
}
public void setPosition(String position) {
this.position = position;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public String getPhone() {
return phone;
}
public void setPhone(String phone) {
this.phone = phone;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -