MCPcopy Create free account
hub / github.com/Nemo1870/sql-parse / OrderByItem

Class OrderByItem

src/main/java/com/sql/parse/schema/OrderByItem.java:7–23  ·  view source on GitHub ↗

@date 2019年4月30日上午09:58:02 @desc orderBy实体

Source from the content-addressed store, hash-verified

5 * @desc orderBy实体
6 */
7public class OrderByItem {
8 private String columnName;
9 private boolean isAsc;
10
11 public OrderByItem(String columnName, boolean isAsc) {
12 this.columnName = columnName;
13 this.isAsc = isAsc;
14 }
15
16 public String getColumnName() {
17 return columnName;
18 }
19
20 public boolean isAsc() {
21 return isAsc;
22 }
23}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected