From b508ec38ddf9ed93d4435e8f1e3c4effef798aaa Mon Sep 17 00:00:00 2001 From: lyh <925863403@qq.com> Date: 星期一, 15 九月 2025 17:18:04 +0800 Subject: [PATCH] 起落架DNC项目更改sql 更改yml配置 集成3DE接口 --- src/main/resources/com.lxzn.nc.dao/DeviceGroupMapper.xml | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/resources/com.lxzn.nc.dao/DeviceGroupMapper.xml b/src/main/resources/com.lxzn.nc.dao/DeviceGroupMapper.xml index 90de523..5906e14 100644 --- a/src/main/resources/com.lxzn.nc.dao/DeviceGroupMapper.xml +++ b/src/main/resources/com.lxzn.nc.dao/DeviceGroupMapper.xml @@ -39,17 +39,17 @@ where parent_id=#{parentId} and delete_flag=0 </select> - <resultMap id="deviceGroupExtPermsMap" type="DeviceGroupExt"> + <resultMap id="deviceGroupExtPermsMap" type="com.lxzn.framework.domain.nc.ext.DeviceGroupExt"> <id column="group_id" property="groupId" /> <result column="user_id" property="userId" /> <collection column="{parentId=group_id, userId=user_id}" property="children" - javaType="ArrayList" ofType="DeviceGroupExt" select="getByParentIdAndUserPerms"> + javaType="ArrayList" ofType="com.lxzn.framework.domain.nc.ext.DeviceGroupExt" select="getByParentIdAndUserPerms"> <id column="group_id" property="groupId" /> <result column="user_id" property="userId" /> </collection> </resultMap> - <resultMap id="deviceGroupExtPermsMapAs" type="DeviceGroupExt"> + <resultMap id="deviceGroupExtPermsMapAs" type="com.lxzn.framework.domain.nc.ext.DeviceGroupExt"> <id column="group_id" property="groupId" /> <association property="parent" column="{id=parent_id}" select="findById"> </association> -- Gitblit v1.9.3