/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package vn.edu.rmit.examples.dto; import java.io.Serializable; /** * * @author v10532 */ public class DepartmentDTO implements Serializable { private Long id; private String name; public Long getId() { return id; } public void setId(Long id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } }