|
|
@@ -16,7 +16,7 @@ public class MsgwSendApplyPageRequest extends JpaDateTimePageableDataRequest<Msg |
|
|
|
private AuditStatus status; |
|
|
|
|
|
|
|
public MsgwSendApplyPageRequest() { |
|
|
|
this.orderBy="id"; |
|
|
|
this.orderBy="insertTime"; |
|
|
|
this.desc=true; |
|
|
|
} |
|
|
|
|
|
|
@@ -27,7 +27,6 @@ public class MsgwSendApplyPageRequest extends JpaDateTimePageableDataRequest<Msg |
|
|
|
hql.append(" and status=:status", status); |
|
|
|
hql.append(" and insertTime>=:startTime", startTime); |
|
|
|
hql.append(" and insertTime<=:endTime", endTime); |
|
|
|
hql.append( " order by insertTime desc "); |
|
|
|
return hql; |
|
|
|
} |
|
|
|
|