修复行政区划未移除的问题

This commit is contained in:
648540858
2024-10-20 14:55:00 +08:00
parent d7c1023e9d
commit 7d669f74ec
4 changed files with 60 additions and 8 deletions

View File

@@ -540,4 +540,12 @@ public interface PlatformChannelMapper {
" </script>")
Set<Group> queryShareGroup(@Param("platformId") Integer platformId);
@Select(" <script>" +
" SELECT wcr.* " +
" from wvp_common_region wcr" +
" left join wvp_platform_region wpr on wpr.region_id = wcr.id " +
" where wpr.platform_id = #{platformId}" +
" order by wcr.id DESC" +
" </script>")
Set<Region> queryShareRegion(Integer id);
}