销售冠,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

@@ -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;
}