Commit 22c78bf4216b50359468240741b905acdedb8ac3
1 parent
a7afd3ae
修改直播申请的排序
Showing
1 changed file
with
1 additions
and
1 deletions
src/main/java/com/cnlive/shenhe/serviceImpl/LiveApplyServiceImpl.java
| ... | ... | @@ -119,7 +119,7 @@ public class LiveApplyServiceImpl { |
| 119 | 119 | if (CommonUtils.isNotEmpty(orderByClause)) { |
| 120 | 120 | example.setOrderByClause(orderByClause); |
| 121 | 121 | }else{ |
| 122 | - example.setOrderByClause("pre_start_time"); | |
| 122 | + example.setOrderByClause("created_at desc"); | |
| 123 | 123 | } |
| 124 | 124 | if (CommonUtils.isNotEmpty(start_date)) { |
| 125 | 125 | Timestamp startdate = null; | ... | ... |