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

org.eweb4j.orm.sql.Sql Maven / Gradle / Ivy

The newest version!
package org.eweb4j.orm.sql;

import java.util.ArrayList;
import java.util.List;

/**
 * TODO
 * @author weiwei [email protected]
 * @date 2013-1-18 上午12:58:38
 */
public class Sql {

	public String sql;
	
	public List args = new ArrayList();
	
}