com.rt.web.beans.ForCallBack Maven / Gradle / Ivy
package com.rt.web.beans;
/**
* 循环回调
*/
public interface ForCallBack {
/**
* 执行
*
* @param item item
* @param i i
* @return object
*/
public Object exec(Object item, int i);
}