解决售后单列表的排序问题

This commit is contained in:
lifenlong 2021-07-08 09:59:54 +08:00
parent 6aadd00e45
commit 9e240f22b6
2 changed files with 4 additions and 6 deletions

View File

@ -121,7 +121,7 @@ spring:
props:
#是否打印逻辑SQL语句和实际SQL语句建议调试时打印在生产环境关闭
sql:
show: false
show: true
# 忽略鉴权url
ignored:
@ -196,9 +196,9 @@ logging:
# 输出级别
level:
cn.lili: info
org.hibernate: debug
org.springframework: debug
org.springframework.data.mongodb.core: debug
# org.hibernate: debug
# org.springframework: debug
# org.springframework.data.mongodb.core: debug
file:
# 指定路径
path: lili-logs

View File

@ -111,8 +111,6 @@ public class AfterSaleSearchParams extends PageVO {
}
this.betweenWrapper(queryWrapper);
queryWrapper.eq("delete_flag", false);
queryWrapper.orderByDesc("create_time");
return queryWrapper;
}