销售冠,post

This commit is contained in:
zhonghua1
2025-12-24 18:12:01 +08:00
parent 0e316d64c3
commit 7753523fb7
6 changed files with 27 additions and 7 deletions

View File

@@ -117,3 +117,7 @@ hikari:
- [HikariCP 官方文档](https://github.com/brettwooldridge/HikariCP)
- [MySQL wait_timeout 说明](https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_wait_timeout)

View File

@@ -299,7 +299,7 @@ public class AudioManagementController {
/**
* 分页查询录音列表
*/
@GetMapping("/list")
@PostMapping("/list")
@Operation(summary = "分页查询录音列表", description = "分页查询录音信息列表")
public ResponseEntity<Map<String, Object>> getAudioList(
@Parameter(description = "页码", example = "1") @RequestParam(defaultValue = "1") Integer current,

View File

@@ -32,7 +32,7 @@ public class IndustryTagsController {
/**
* 根据条件分页查询行业标签列表
*/
@GetMapping("/list")
@PostMapping("/list")
@Operation(summary = "分页查询行业标签列表", description = "根据条件分页查询行业标签信息列表,支持按所属行业、标签分类、标签名称查询")
public ResponseEntity<Map<String, Object>> getIndustryTagsList(
@Parameter(description = "页码", example = "1")

View File

@@ -65,7 +65,7 @@ public class KnowledgeBaseController {
/**
* 分页查询知识列表
*/
@GetMapping("/list")
@PostMapping("/list")
@Operation(summary = "分页查询知识列表", description = "分页查询知识信息列表")
public ResponseEntity<Map<String, Object>> getKnowledgeList(
@Parameter(description = "页码", example = "1")

View File

@@ -57,5 +57,9 @@ public class IndustryTags implements Serializable {
@TableField("update_time")
private LocalDateTime updateTime;
@Schema(description = "是否启用")
@TableField("enabled")
private boolean enabled;
}

View File

@@ -44,16 +44,28 @@ logging:
dev.langchain4j.internal.RetryUtils: ERROR
# MyBatis Plus SQL日志
com.baomidou.mybatisplus: DEBUG
# MyBatis SQL日志
com.rj.mapper: DEBUG
# MyBatis SQL日志 - 设置为TRACE以输出SQL执行结果
com.rj.mapper: TRACE
# 数据库连接池日志
# com.zaxxer.hikari: DEBUG
# Spring JDBC日志
org.springframework.jdbc: DEBUG
# Spring JDBC日志 - 设置为TRACE以输出结果集数据
org.springframework.jdbc: TRACE
org.springframework.jdbc.core: TRACE
org.springframework.jdbc.core.JdbcTemplate: TRACE
org.springframework.jdbc.core.StatementCreatorUtils: TRACE
# 显示SQL参数
com.baomidou.mybatisplus.core.executor: DEBUG
# 显示SQL执行时间
com.baomidou.mybatisplus.core.toolkit: DEBUG
# MyBatis核心日志 - 输出SQL执行结果
org.apache.ibatis: TRACE
org.apache.ibatis.executor: TRACE
org.apache.ibatis.executor.resultset: TRACE
# JDBC驱动日志 - 输出结果集
jdbc.sqlonly: DEBUG
jdbc.sqltiming: DEBUG
jdbc.resultset: TRACE
jdbc.resultsettable: TRACE
spring: