|
@@ -55,4 +55,13 @@ public class JyPlatformUserWaitServiceImpl extends ServiceImpl<IJyPlatformUserWa
|
|
wrapper.set(JyPlatformUserWait::getPlatformId,loginPlatformId);
|
|
wrapper.set(JyPlatformUserWait::getPlatformId,loginPlatformId);
|
|
this.update(wrapper);
|
|
this.update(wrapper);
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public void updatePlatformId(Integer id,String name, Integer loginPlatformId) {
|
|
|
|
+ LambdaUpdateWrapper<JyPlatformUserWait> wrapper = new LambdaUpdateWrapper<>();
|
|
|
|
+ wrapper.eq(JyPlatformUserWait::getId,id);
|
|
|
|
+ wrapper.set(JyPlatformUserWait::getPlatformId,loginPlatformId);
|
|
|
|
+ wrapper.set(JyPlatformUserWait::getName,name);
|
|
|
|
+ this.update(wrapper);
|
|
|
|
+ }
|
|
}
|
|
}
|