删除无效代码

This commit is contained in:
zhonghua1
2026-01-10 17:59:45 +08:00
parent 186ec80530
commit 599110d1a1

View File

@@ -321,7 +321,6 @@ public class AudioManagementController {
@Parameter(description = "页码", example = "1") @RequestParam(defaultValue = "1") Integer current,
@Parameter(description = "每页大小", example = "10") @RequestParam(defaultValue = "10") Integer size,
@Parameter(description = "录音名称(模糊查询)") @RequestParam(required = false) String recordingName,
@Parameter(description = "客户ID") @RequestParam(required = false) String customerId,
@Parameter(description = "客户手机号(模糊查询)") @RequestParam(required = false) String customerPhone,
@Parameter(description = "客户姓名(模糊查询)") @RequestParam(required = false) String customerName,
@Parameter(description = "所属销售姓名(模糊查询)") @RequestParam(required = false) String salesName,
@@ -341,9 +340,6 @@ public class AudioManagementController {
if (recordingName != null && !recordingName.trim().isEmpty()) {
queryWrapper.like(AudioManagement::getRecordingName, recordingName);
}
if (customerId != null && !customerId.trim().isEmpty()) {
queryWrapper.eq(AudioManagement::getCustomerId, customerId);
}
if (customerPhone != null && !customerPhone.trim().isEmpty()) {
queryWrapper.like(AudioManagement::getCustomerPhone, customerPhone);
}