Index: trunk/grails-app/domain/Department.groovy
===================================================================
--- trunk/grails-app/domain/Department.groovy	(revision 162)
+++ trunk/grails-app/domain/Department.groovy	(revision 162)
@@ -0,0 +1,20 @@
+class Department {
+
+    String name
+    String description = ""
+    String costCode = ""
+    boolean isActive = true
+
+    static hasMany = [systemSections: SystemSection]
+
+//     static belongsTo = []
+
+//     static constraints = {
+// 
+//     }
+
+    String toString() {
+        "${this.name}"
+    }
+}
+
Index: trunk/grails-app/domain/SystemSection.groovy
===================================================================
--- trunk/grails-app/domain/SystemSection.groovy	(revision 161)
+++ trunk/grails-app/domain/SystemSection.groovy	(revision 162)
@@ -1,8 +1,10 @@
 class SystemSection {
-    
+
     Site site
+    Department department
 
     String name
     String description = ""
+    String costCode = ""
     boolean isActive = true
 
