⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 employee.java

📁 固定资产管理系统 资产的增删改查 借出 管理 自动报废 统计功能等等
💻 JAVA
字号:
/** *  */package com.qrsx.asset.model;/** * @author 马利永 * */public class Employee {	private Integer id; //员工id	private String Code ; //员工编码号	private String name; //员工名称	private String deptment; //员工所属部门	private Integer roleId;  //角色Id	private String description; //描述	/**	 * @return the id	 */	public Integer getId() {		return id;	}	/**	 * @param id the id to set	 */	public void setId(Integer id) {		this.id = id;	}	/**	 * @return the code	 */	public String getCode() {		return Code;	}	/**	 * @param code the code to set	 */	public void setCode(String code) {		Code = code;	}	/**	 * @return the name	 */	public String getName() {		return name;	}	/**	 * @param name the name to set	 */	public void setName(String name) {		this.name = name;	}	/**	 * @return the deptment	 */	public String getDeptment() {		return deptment;	}	/**	 * @param deptment the deptment to set	 */	public void setDeptment(String deptment) {		this.deptment = deptment;	}	/**	 * @return the roleId	 */	public Integer getRoleId() {		return roleId;	}	/**	 * @param roleId the roleId to set	 */	public void setRoleId(Integer roleId) {		this.roleId = roleId;	}	/**	 * @return the description	 */	public String getDescription() {		return description;	}	/**	 * @param description the description to set	 */	public void setDescription(String description) {		this.description = description;	}		}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -