|
|
@ -60,7 +60,7 @@ public class SysPostUserServiceImpl extends ServiceImpl<SysPostUserMapper,SysPos |
|
|
|
public void bind(SysPostUserBo param) { |
|
|
|
Integer saveType = param.getSaveType()==null?0: param.getSaveType(); |
|
|
|
LambdaQueryWrapper<SysPost> postLqw = new LambdaQueryWrapper<>(); |
|
|
|
postLqw.in(SysPost::getId,param.getUserIds()); |
|
|
|
postLqw.in(SysPost::getId,param.getPostIds()); |
|
|
|
List<SysPost> postList = postMapper.selectList(postLqw); |
|
|
|
LambdaQueryWrapper<SysUser> userLqw = new LambdaQueryWrapper<>(); |
|
|
|
userLqw.in(SysUser::getId,param.getUserIds()); |
|
|
|