@Retention(value=RUNTIME) @Target(value=TYPE) public @interface BindDao
This annotation mark an interface for DAO (Data Access Object) associated to a specific bean associated with value() attribute.
For each defined methods in the associated interface will be generated an method which use SQL statement. The kind of SQL used in methods will
depends from annotation used to mark method.
Supported queries are:
INSERT: with BindSqlInsert annotationUPDATE: with BindSqlUpdate annotationSELECT: with BindSqlSelect annotationDELETE: with BindSqlDelete annotationReferred value() bean must be annotated with BindType annotation.
Copyright © 2018. All rights reserved.