com.jfinal.template.activerecord.sql.SqlSource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of enjoy-sql Show documentation
Show all versions of enjoy-sql Show documentation
the jfinal enjoy plugin for normal java program to use sql management function.
package com.jfinal.template.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;
}
}