queryspecification.java
来自「JiveJdon 3.0不只是一个论坛程序」· Java 代码 · 共 24 行
JAVA
24 行
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();
Collection getParams();
String getWhereSQL();
String getResultSortSQL();
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?