mirror of
https://gitee.com/hhyykk/ipms-sjy.git
synced 2025-07-14 02:55:07 +08:00
初始化 API 错误日志的后端 API
This commit is contained in:
@ -52,13 +52,14 @@ public interface ${table.className}Mapper extends BaseMapperX<${table.className}
|
||||
default PageResult<${table.className}DO> selectPage(${table.className}PageReqVO reqVO) {
|
||||
return selectPage(reqVO, new QueryWrapperX<${table.className}DO>()
|
||||
#listCondition()
|
||||
.orderByDesc("id")# 大多数情况下,id 倒序
|
||||
.orderByDesc("id")## 大多数情况下,id 倒序
|
||||
);
|
||||
}
|
||||
|
||||
default List<${table.className}DO> selectList(${table.className}ExportReqVO reqVO) {
|
||||
return selectList(new QueryWrapperX<${table.className}DO>()
|
||||
#listCondition()# 大多数情况下,id 倒序
|
||||
#listCondition()
|
||||
.orderByDesc("id")## 大多数情况下,id 倒序
|
||||
);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user