📄 department.java
字号:
/* * Department.java * * Created on 2006年5月12日, 下午10:36 * * To change this template, choose Tools | Template Manager * and open the template in the editor. */package enova.pojo;/** * * @author vlinux */public class Department implements java.io.Serializable { private Integer id; private String name; /** Creates a new instance of Department */ public Department(){} public Department( Integer id ){ this.setId( id ); } public Department( String name ) { this.setName(name); } public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -