queryspecification.java

来自「非常有影响的 j道 论 坛 源码 国外很有明的专家编写的 ....对java爱好」· Java 代码 · 共 28 行

JAVA
28
字号
package com.jdon.jivejdon.model.query;

import java.util.Collection;

/**
 *  QuerySpecification
 *  we regard  SQL as a specification that belongs to domain layer ,
 *  now default is Databse SQL, in the future, can be extends to Hibernate SQL or other
 *  
 * @author banq
 *
 */
public interface QuerySpecification {

	void parse();
	
	void parse(String tablename);
	
	Collection getParams();
	
	String getWhereSQL();
	
	String getResultSortSQL();
	
	String getResultSortSQL(String tablename);
	
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?