From b1fce17f43306b209e7282f1b94a67705e82f646 Mon Sep 17 00:00:00 2001 From: "1437892690@qq.com" <1437892690@qq.com> Date: Thu, 14 Aug 2025 18:21:38 +0800 Subject: [PATCH] =?UTF-8?q?[=E5=8A=9F=E8=83=BD]=20=E5=B0=86=E6=B6=89?= =?UTF-8?q?=E5=8F=8Ascence=5Fipobject=5Fdetail=E8=A7=86=E5=9B=BE=E7=9A=84S?= =?UTF-8?q?QL=E8=AF=AD=E5=8F=A5=E6=94=B9=E6=88=90=E5=8A=A8=E6=80=81sql?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 关联 #[1469827334504448]将涉及scence_ipobject_detail视图的SQL语句改成动态sql http://192.168.0.96:8090/demo/rdm.html#/task-detail/939050947543040/939050947543050/1469827334504448 --- .../IResourceBuildSqlCrossoverService.java | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/main/java/neatlogic/framework/cmdb/crossover/IResourceBuildSqlCrossoverService.java b/src/main/java/neatlogic/framework/cmdb/crossover/IResourceBuildSqlCrossoverService.java index 2a47684..b011430 100644 --- a/src/main/java/neatlogic/framework/cmdb/crossover/IResourceBuildSqlCrossoverService.java +++ b/src/main/java/neatlogic/framework/cmdb/crossover/IResourceBuildSqlCrossoverService.java @@ -79,6 +79,20 @@ public interface IResourceBuildSqlCrossoverService extends ICrossoverService { // String buildGetResourceCountByDynamicConditionSql(); // String buildGetResourceIdListByDynamicConditionSql(); + String buildGetAppResourceCountSql(ResourceSearchVo searchVo); + + String buildGetAppResourceIdListSql(ResourceSearchVo searchVo); + + String buildGetAppResourceListByIdListSql(ResourceSearchVo searchVo, List selectFieldNameList); + + String buildGetAppResourceListByIdListSql(ResourceSearchVo searchVo); + + String buildGetAppEnvListByViewNameAndAppSystemIdAndAppModuleIdAndInspectStatusListSql(String viewName, Long appSystemId, Long appModuleId, List inspectStatusList); + +// List buildGetAppResourceTypeIdListByViewNameAndAppSystemIdSql(String viewName, Long appSystemId, Long appModuleId, Long envId, List inspectStatusList); + +// List getAppSystemIdListById(@Param("viewName") String viewName, @Param("id") Long id); + // InspectMapper String buildGetInspectResourceListByIdListSql(List idList, List selectFieldNameList); -- Gitee