nz.net.osnz.common.dao.bean.BaseBean.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common-dao Show documentation
Show all versions of common-dao Show documentation
Common Data Access Object Module
The newest version!
package nz.net.osnz.common.dao.bean
import groovy.transform.CompileStatic
import javax.persistence.MappedSuperclass
/**
* @author Kefeng Deng
*
* Abstract bean as parent for all domains
*/
@CompileStatic
@MappedSuperclass
public abstract class BaseBean implements Serializable {
}