All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aggrepoint.dao.IFunc Maven / Gradle / Ivy

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