Skip to content

Commit

Permalink
fix: fix reverse of logquery (#804)
Browse files Browse the repository at this point in the history
  • Loading branch information
jsy1001de authored Feb 21, 2024
1 parent b0aeab0 commit 4d58755
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public class LogMultiQueryRequest {
/**
* order by time
*/
private boolean isReverse = true;
private Boolean isReverse = true;

@Data
public static class SingleAppLogQuery {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public class LogQueryRequest {
/**
* order by time
*/
private boolean isReverse = true;
private Boolean isReverse = true;

/**
* type
Expand Down

0 comments on commit 4d58755

Please sign in to comment.