[fix]修改list路径为page

This commit is contained in:
wangqx 2025-09-02 10:43:22 +08:00
parent 0a954f060d
commit 8fd4393ec1
5 changed files with 6 additions and 3 deletions

View File

@ -13,7 +13,7 @@ spring.boot.admin.client:
--- # snail-job 配置
snail-job:
enabled: true
enabled: false
# 需要在 SnailJob 后台组管理创建对应名称的组,然后创建任务的时候选择对应的组,才能正确分派任务
group: "ruoyi_group"
# SnailJob 接入验证令牌 详见 script/sql/ry_job.sql `sj_group_config` 表

View File

@ -117,6 +117,8 @@ security:
- /*/api-docs/**
- /warm-flow-ui/token-name
- /app/**
- /resource/oss/**
# 多租户配置

View File

@ -118,6 +118,8 @@ public class PlusDataPermissionInterceptor extends BaseMultiTableInnerIntercepto
}
}
/**
* 处理 UPDATE 语句中的 WHERE 条件
*

View File

@ -70,5 +70,4 @@ public class SysMessage extends BaseAudit {
*/
private Long templateId;
private String ext;
}

View File

@ -45,7 +45,7 @@ public class FeedbackController {
@Tag(name = "查询意见反馈列表")
@PostMapping("/list")
@PostMapping("/page")
public R<IPage<FeedbackVO>> list(@RequestBody FeedbackBO query, @RequestBody Page page) {
Page<Feedback> feedBackPage = service.page(page, query.toWrapper());
Page<FeedbackVO> feedbackVOList = convert.toVO(feedBackPage);