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

com.litongjava.db.activerecord.sql.SqlSource Maven / Gradle / Ivy

There is a newer version: 1.4.7
Show newest version
package com.litongjava.db.activerecord.sql;

import com.jfinal.template.source.ISource;

/**
 * 封装 sql 模板源
 */
class SqlSource {

	String file;
	ISource source;

	SqlSource(String file) {
		this.file = file;
		this.source = null;
	}

	SqlSource(ISource source) {
		this.file = null;
		this.source = source;
	}

	boolean isFile() {
		return file != null;
	}
}







© 2015 - 2025 Weber Informatics LLC | Privacy Policy