All Downloads are FREE. Search and download functionalities are using the official Maven repository.

grails.gorm.tests.ChildEntity.groovy Maven / Gradle / Ivy

There is a newer version: 2023.0.1
Show newest version
package grails.gorm.tests

import grails.persistence.Entity

/**
 * @author graemerocher
 */
@Entity
class ChildEntity implements Serializable {
    Long id
    Long version
    String name

    static mapping = {
        name index:true
    }

    static belongsTo = [TestEntity]
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy