📄 queryspecification.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -