|
|
@@ -455,12 +455,12 @@ public class AppPlanServiceImpl extends ServiceImpl<AppPlanMapper, AppPlan> impl
|
|
|
QueryWrapper<AppRule> qw = new QueryWrapper<>();
|
|
|
|
|
|
if (info.getOrgType() != null) {
|
|
|
- qw.lambda().eq(AppRule::getOrgType, info.getOrgType()).eq(AppRule::getStatus, 0);
|
|
|
+ qw.lambda().eq(AppRule::getOrgType, info.getOrgType()).eq(AppRule::getStatus, "0");
|
|
|
}
|
|
|
|
|
|
if (info.getOrgId() != null) {
|
|
|
SysOrg org = orgService.selectSysOrgById(info.getOrgId(), SecurityConstants.INNER);
|
|
|
- qw.lambda().eq(AppRule::getOrgType, org.getType()).eq(AppRule::getStatus, 0);
|
|
|
+ qw.lambda().eq(AppRule::getOrgType, org.getType()).eq(AppRule::getStatus, "0");
|
|
|
}
|
|
|
|
|
|
List<AppRule> appRules = appRuleMapper.selectList(qw);
|