@Target(value=METHOD)
@Retention(value=RUNTIME)
public @interface SqlProcessor
The annotated method must be a member of a Dao annotated interface.
@Dao
public interface EmployeeDao {
@SqlProcessor
<R> R process(Integer id, BiFunction<Config, PreparedSql, R> handler);
}