com.jpaquery.core.facade.SelectPath Maven / Gradle / Ivy
package com.jpaquery.core.facade;
public interface SelectPath {
/**
* 聚集函数类型
*
* @author lujijiang
*
*/
public enum SelectPathType {
distinct, count, avg, sum, min, max
}
SelectPath distinct();
FunctionPath count();
FunctionPath avg();
FunctionPath sum();
FunctionPath min();
FunctionPath max();
}