fix: 包名由 com.nis 变更为 net.geedge

This commit is contained in:
shizhendong
2022-09-26 17:24:17 +08:00
parent d2f50613af
commit 02be6ef27b
3 changed files with 6 additions and 6 deletions

View File

@@ -1,13 +1,13 @@
<?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.nis.dao.MonitorModuleDao">
<mapper namespace="net.geedge.dao.MonitorModuleDao">
<delete id="truncateData">
truncate monitor_module;
</delete>
<select id="getModuleBackupData" resultType="com.nis.entity.MonitorModule">
<select id="getModuleBackupData" resultType="net.geedge.entity.MonitorModule">
select * from monitor_module_copy;
</select>

View File

@@ -1,8 +1,8 @@
<?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.nis.dao.MonitorEndpointDao">
<mapper namespace="net.geedge.dao.MonitorEndpointDao">
<select id="getEndpointBackupData" resultType="com.nis.entity.MonitorEndpoint">
<select id="getEndpointBackupData" resultType="net.geedge.entity.MonitorEndpoint">
select * from monitor_endpoint_copy;
</select>

View File

@@ -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.nis.dao.SqlDao">
<mapper namespace="net.geedge.dao.SqlDao">
<select id="allTables" resultType="java.lang.String">
show tables