Add Student attributes

This commit is contained in:
Mariusz Kuligowski 2018-03-10 23:28:15 +01:00
parent 846bfe2fbf
commit e26daf8689
1 changed files with 5 additions and 2 deletions

View File

@ -1,7 +1,10 @@
package com.baeldung.grails
class Student {
Long id
String firstName
String lastName
static constraints = {}
static constraints = {
}
}