客户信息补录
This commit is contained in:
@@ -136,8 +136,8 @@ public class DeviceManagementController {
|
||||
@RequestParam(required = false) String dealershipId,
|
||||
@Parameter(description = "绑定状态")
|
||||
@RequestParam(required = false) Boolean bindStatus,
|
||||
@Parameter(description = "充电状态")
|
||||
@RequestParam(required = false) String chargingStatus) {
|
||||
@Parameter(description = "电话")
|
||||
@RequestParam(required = false) String salesPhone) {
|
||||
Map<String, Object> result = new HashMap<>();
|
||||
try {
|
||||
Page<DeviceManagement> page = new Page<>(current, size);
|
||||
@@ -153,8 +153,8 @@ public class DeviceManagementController {
|
||||
if (bindStatus != null) {
|
||||
queryWrapper.eq(DeviceManagement::getBindStatus, bindStatus);
|
||||
}
|
||||
if (chargingStatus != null && !chargingStatus.trim().isEmpty()) {
|
||||
queryWrapper.eq(DeviceManagement::getChargingStatus, chargingStatus);
|
||||
if (salesPhone != null && !salesPhone.trim().isEmpty()) {
|
||||
queryWrapper.eq(DeviceManagement::getSalesPhone, salesPhone);
|
||||
}
|
||||
|
||||
// 按getUpdateTime 时间倒序排列
|
||||
|
||||
Reference in New Issue
Block a user