fix: 包名由 com.nis 变更为 net.geedge
This commit is contained in:
@@ -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>
|
||||
|
||||
|
||||
@@ -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>
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user