From 7c7cb1855b7f18802f55a70fa14ed70cbdb11bab Mon Sep 17 00:00:00 2001
From: 13693261870 <252740454@qq.com>
Date: 星期三, 02 七月 2025 16:30:31 +0800
Subject: [PATCH] 修改名称空间

---
 se-system/src/main/resources/mapper/all/BaseQueryMapper.xml |   20 ++++++++++----------
 1 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/se-system/src/main/resources/mapper/all/BaseQueryMapper.xml b/se-system/src/main/resources/mapper/all/BaseQueryMapper.xml
index 2e85d14..25cedd7 100644
--- a/se-system/src/main/resources/mapper/all/BaseQueryMapper.xml
+++ b/se-system/src/main/resources/mapper/all/BaseQueryMapper.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8" ?>
 <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
-<mapper namespace="com.lf.server.mapper.all.BaseQueryMapper">
-    <select id="selectUserFuzzy" resultType="com.lf.server.entity.ctrl.IdNameEntity">
+<mapper namespace="com.terra.system.mapper.all.BaseQueryMapper">
+    <select id="selectUserFuzzy" resultType="com.terra.system.entity.ctrl.IdNameEntity">
         select id,uname "name" from lf.sys_user
         <where>
             <if test="name != null">
@@ -11,7 +11,7 @@
         order by uname limit 10
     </select>
 
-    <select id="selectDepFuzzy" resultType="com.lf.server.entity.ctrl.IdNameEntity">
+    <select id="selectDepFuzzy" resultType="com.terra.system.entity.ctrl.IdNameEntity">
         select id,name from lf.sys_dep
         <where>
             <if test="name != null">
@@ -34,7 +34,7 @@
         </where>
     </select>
 
-    <select id="selectTabsByPage" resultType="com.lf.server.entity.ctrl.TabEntity">
+    <select id="selectTabsByPage" resultType="com.terra.system.entity.ctrl.TabEntity">
         select ns, tab, tab_desc, fn_get_entity(tab) entity, tableType, bak, fn_tab_count(a.ns, a.tab, #{filters}) "rows"
         from lf.sys_dict a
         <where>
@@ -50,11 +50,11 @@
         limit #{limit} offset #{offset};
     </select>
 
-    <select id="selectFields" resultType="com.lf.server.entity.data.DictEntity">
+    <select id="selectFields" resultType="com.terra.system.entity.data.DictEntity">
       select * from lf.sys_dict where ns = #{ns} and tab = #{tab} order by order_num
     </select>
 
-    <select id="selectDomains" resultType="com.lf.server.entity.data.DomainEntity">
+    <select id="selectDomains" resultType="com.terra.system.entity.data.DomainEntity">
       select a.* from lf.sys_domain a inner join lf.sys_dict b on a.dom_name = b.domain_na
       where b.ns = #{ns} and b.tab = #{tab} and b.domain_na is not null
     </select>
@@ -63,7 +63,7 @@
         select ST_astext(ST_Union(geom)) as route from pgr_fromAtoB('lrdl'::text, #{x1}, #{y1}, #{x2}, #{y2});
     </select>
 
-    <select id="selectLocation" resultType="com.lf.server.entity.ctrl.KeyValueEntity">
+    <select id="selectLocation" resultType="com.terra.system.entity.ctrl.KeyValueEntity">
         select '鍥�' "key", cname "value" from bs.th_globe_country where ST_Intersects(ST_PointFromText(#{wkt}, 4490), geom)
         union all
         select '鐪�' "key", cname "value" from bs.th_province_area where ST_Intersects(ST_PointFromText(#{wkt}, 4490), geom)
@@ -73,7 +73,7 @@
         select '鍘�' "key", cname "value" from bs.th_county_area where ST_Intersects(ST_PointFromText(#{wkt}, 4490), geom);
     </select>
 
-    <select id="selectDirTypes" resultType="com.lf.server.entity.ctrl.KeyValueEntity">
+    <select id="selectDirTypes" resultType="com.terra.system.entity.ctrl.KeyValueEntity">
         select (select string_agg(code, ',') from lf.sys_dir where name = a.name) "key", name "value"
         from lf.sys_dir a
         <where>
@@ -86,7 +86,7 @@
         order by key
     </select>
 
-    <select id="selectDirsByTypes" resultType="com.lf.server.entity.ctrl.KeyValueEntity">
+    <select id="selectDirsByTypes" resultType="com.terra.system.entity.ctrl.KeyValueEntity">
         with rs as (
             select name, code
             from lf.sys_dir
@@ -106,7 +106,7 @@
         order by value;
     </select>
 
-    <select id="selectAnnexByTab" resultType="com.lf.server.entity.sys.AttachEntity">
+    <select id="selectAnnexByTab" resultType="com.terra.system.entity.sys.AttachEntity">
         select a.* from lf.sys_attach a
         <where>
             tab = #{tab}

--
Gitblit v1.9.3