|
@@ -55,7 +55,7 @@ public class ProfileTpServiceImpl extends ServiceImpl<ProfileTpMapper, ProfileTp
|
|
|
LambdaQueryWrapper<ProfileTp> lqw = Wrappers.lambdaQuery();
|
|
|
lqw.like(StrUtil.isNotBlank(bo.getName()), ProfileTp::getName, bo.getName());
|
|
|
lqw.eq(StrUtil.isNotBlank(bo.getCode()), ProfileTp::getCode, bo.getCode());
|
|
|
- lqw.eq(bo.getStatus() != null, ProfileTp::getStatus, bo.getStatus());
|
|
|
+ lqw.in(bo.getStatus() != null, ProfileTp::getStatus, bo.getStatus());
|
|
|
return entity2Vo(this.list(lqw));
|
|
|
}
|
|
|
|