manager_usersitem.java
来自「java开发的办公系统 1.系统管理 (地区管理,部门管理,菜单管理,用户管理」· Java 代码 · 共 256 行
JAVA
256 行
package com.vere.manager.item; import java.io.*; public class Manager_usersItem implements Serializable { private String id;// private String username;//用户名 private String psw;//密码 private String new_psw;//密码 private String name;//姓名 private String sex;//性别 private String ip;//ip private String department_id;//所在部门 private String department_nodepath;//上级部门路径 private String area_id;//所在地区 private String area_nodepath;//上级地区路径 private String memo;//备注 private Manager_departmentItem departmentItem=new Manager_departmentItem(); private Manager_areaItem areaItem=null; public Manager_usersItem() { } /** * @see */ public String getId() { if(this.id==null) this.id=""; return this.id; } /** * @see */ public void setId(String id) { this.id=id; } /** * @see 用户名 */ public String getUsername() { if(this.username==null) this.username=""; return this.username; } /** * @see 用户名 */ public void setUsername(String username) { this.username=username; } /** * @see 密码 */ public String getPsw() { if(this.psw==null) this.psw=""; return this.psw; } /** * @see 密码 */ public void setPsw(String psw) { this.psw=psw; } /** * @see 密码 */ public String getNew_psw() { if(this.new_psw==null) this.new_psw=""; return this.new_psw; } /** * @see 密码 */ public void setNew_psw(String new_psw) { this.new_psw=new_psw; } /** * @see 姓名 */ public String getName() { if(this.name==null) this.name=""; return this.name; } /** * @see 姓名 */ public void setName(String name) { this.name=name; } /** * @see 性别 */ public String getSex() { if(this.sex==null) this.sex=""; return this.sex; } /** * @see 性别 */ public void setSex(String sex) { this.sex=sex; } /** * @see ip */ public String getIp() { if(this.ip==null) this.ip=""; return this.ip; } /** * @see ip */ public void setIp(String ip) { this.ip=ip; } /** * @see 所在部门 */ public String getDepartment_id() { if(this.department_id==null) this.department_id=""; return this.department_id; } /** * @see 所在部门 */ public void setDepartment_id(String department_id) { this.department_id=department_id; } /** * @see 上级部门路径 */ public String getDepartment_nodepath() { if(this.department_nodepath==null) this.department_nodepath=""; return this.department_nodepath; } /** * @see 上级部门路径 */ public void setDepartment_nodepath(String department_nodepath) { this.department_nodepath=department_nodepath; } /** * @see 所在地区 */ public String getArea_id() { if(this.area_id==null) this.area_id=""; return this.area_id; } /** * @see 所在地区 */ public void setArea_id(String area_id) { this.area_id=area_id; } /** * @see 上级地区路径 */ public String getArea_nodepath() { if(this.area_nodepath==null) this.area_nodepath=""; return this.area_nodepath; } /** * @see 上级地区路径 */ public void setArea_nodepath(String area_nodepath) { this.area_nodepath=area_nodepath; } /** * @see 备注 */ public String getMemo() { if(this.memo==null) this.memo=""; return this.memo; } /** * @see 备注 */ public void setMemo(String memo) { this.memo=memo; } /** * @see 所在部门 */ public Manager_departmentItem getManager_departmentItem() { return this.departmentItem; } /** * @see 所在部门 */ public void setManager_departmentItem(Manager_departmentItem departmentItem) { this.departmentItem=departmentItem; } /** * @see 所在地区 */ public Manager_areaItem getManager_areaItem() { return this.areaItem; } /** * @see 所在地区 */ public void setManager_areaItem(Manager_areaItem areaItem) { this.areaItem=areaItem; }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?