
com.aggrepoint.dao.IFunc Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apdao Show documentation
Show all versions of apdao Show documentation
Data Access Object layer utilities
The newest version!
package com.aggrepoint.dao;
import java.lang.annotation.Annotation;
import java.lang.reflect.Method;
/**
* @author Jiangming Yang ([email protected])
*/
public interface IFunc {
public String getName();
/**
* 执行方法
*
* @param params
* 方法参数
* @param args
* Dao方法的参数
* @param anns
* Dao方法参数的注解
* @return
*/
public String exec(Method method, String[] params, Object[] args,
Annotation[][] anns);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy