// All custom logic should be stored in this class
// so it is not affected by changes in the model,
// Which will change the abstract superclass instead

#if ($entity.packageName)
package $entity.packageName;
#end

public class ${entity.classNameWithoutPackage} extends ${entity.prefixClassNameWithOptionalPackage} {

}