排序条件, 默认ASC
(String columnName)
| 99 | * 排序条件, 默认ASC |
| 100 | */ |
| 101 | public Selector<T> orderBy(String columnName) { |
| 102 | if (orderByList == null) { |
| 103 | orderByList = new ArrayList<OrderBy>(5); |
| 104 | } |
| 105 | orderByList.add(new OrderBy(columnName)); |
| 106 | return this; |
| 107 | } |
| 108 | |
| 109 | /** |
| 110 | * 排序条件, 默认ASC |
no test coverage detected