class Department { String name String description = "" String costCode = "" boolean isActive = true static hasMany = [systemSections: SystemSection] // static belongsTo = [] // static constraints = { // // } String toString() { "${this.name}" } }