|
@@ -298,6 +298,13 @@ public interface Func<Children, R> extends Serializable {
|
|
|
*/
|
|
|
Children groupBy(boolean condition, R... columns);
|
|
|
|
|
|
+ /**
|
|
|
+ * ignore
|
|
|
+ */
|
|
|
+ default Children orderByAsc(R column) {
|
|
|
+ return orderByAsc(true, column);
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* ignore
|
|
|
*/
|
|
@@ -317,6 +324,13 @@ public interface Func<Children, R> extends Serializable {
|
|
|
return orderBy(condition, true, columns);
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * ignore
|
|
|
+ */
|
|
|
+ default Children orderByDesc(R column) {
|
|
|
+ return orderByDesc(true, column);
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* ignore
|
|
|
*/
|