woko.tooling.cli.commands.my-entity-groovy.template Maven / Gradle / Ivy
package $modelPackage
import org.compass.annotations.Searchable
import org.compass.annotations.SearchableId
import org.compass.annotations.SearchableProperty
import javax.validation.constraints.NotNull
import javax.persistence.Entity
import javax.persistence.Id
@Entity
@Searchable
class MyEntity {
@Id
@SearchableId
Long id
@NotNull
@SearchableProperty
String myProp
Date myOtherProp
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy