组织架构监听

This commit is contained in:
zhangchenbiao
2023-06-16 18:13:23 +08:00
parent 901815d714
commit 16a4256b5a
6 changed files with 94 additions and 1 deletions

View File

@@ -187,4 +187,13 @@
where
deleted = 0
</select>
<select id="getRegionInfoByRegionId" resultMap="BaseResultMap">
select
<include refid="Base_Column_List"/>
from
region
where
deleted = 0 and region_id= #{regionId}
</select>
</mapper>