department.java

来自「are are are are are are are are are are 」· Java 代码 · 共 50 行

JAVA
50
字号
/* * 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 + =
减小字号Ctrl + -
显示快捷键?