提交 c5fae98e 编写于 作者: sq3536's avatar sq3536

app接口

上级 3feb85c2
...@@ -121,4 +121,21 @@ public class DstAppService extends DstAppServiceImpl ...@@ -121,4 +121,21 @@ public class DstAppService extends DstAppServiceImpl
}); });
return new PageImpl<DstApp>(content,context.getPageable(),content.size()); return new PageImpl<DstApp>(content,context.getPageable(),content.size());
} }
@Override
public List<DstApp> selectBySystemid(String pssystemid) {
DstSystem system = sysPSSystemService.getById(pssystemid);
if (system.getSysstructure() == null)
{
return new ArrayList<>();
}
if (system.getApps() == null)
{
return system.getSysstructure().getSysApps(true);
}
return new ArrayList<>();
}
} }
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册