package com.abc.entities; import java.util.Set; public class Dept { DeptPK deptPK; String startDate; String type; public DeptPK getDeptPK() { return deptPK; } public void setDeptPK(DeptPK deptPK) { this.deptPK = deptPK; } public String getStartDate() { return startDate; } public void setStartDate(String startDate) { this.startDate = startDate; } public String getType() { return type; } public void setType(String type) { this.type = type; } @Override public String toString() { return "[Dept::" + deptPK.projCode + ":" + deptPK.deptName + ":" + startDate + ":" + type + "]"; } /*** * For cascade operations only */ Set employees; public Set getEmployees() { return employees; } public void setEmployees(Set employees) { this.employees = employees; } }