|
@@ -204,7 +204,7 @@ public class CrmDeviceRepairServiceImpl extends AbstractCrudService<CrmDeviceRep
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
- public CommonPage<CrmDeviceRepair> getHistory(PhoneVerifyVO phoneVerifyVO){
|
|
|
+ public void phoneVerify(PhoneVerifyVO phoneVerifyVO){
|
|
|
String phone = phoneVerifyVO.getPhone();
|
|
|
String verify = phoneVerifyVO.getVerify();
|
|
|
if(!com.usky.common.core.util.StringUtils.isBlank(phone) && !com.usky.common.core.util.StringUtils.isBlank(verify)) {
|
|
@@ -219,6 +219,12 @@ public class CrmDeviceRepairServiceImpl extends AbstractCrudService<CrmDeviceRep
|
|
|
throw new BusinessException("用户名或手机号不能为空");
|
|
|
}
|
|
|
}
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public CommonPage<CrmDeviceRepair> getHistory(PhoneVerifyVO phoneVerifyVO){
|
|
|
+ String phone = phoneVerifyVO.getPhone();
|
|
|
+
|
|
|
IPage<CrmDeviceRepair> page = new Page<>(phoneVerifyVO.getCurrent(), phoneVerifyVO.getSize());
|
|
|
LambdaQueryWrapper<CrmDeviceRepair> queryWrapper = Wrappers.lambdaQuery();
|
|
|
queryWrapper.eq(CrmDeviceRepair::getReflectPhone,phone)
|