fix: 包名由 com.nis 变更为 net.geedge
This commit is contained in:
@@ -1,13 +1,13 @@
|
|||||||
<?xml version="1.0" encoding="UTF-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">
|
<!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">
|
<delete id="truncateData">
|
||||||
truncate monitor_module;
|
truncate monitor_module;
|
||||||
</delete>
|
</delete>
|
||||||
|
|
||||||
<select id="getModuleBackupData" resultType="com.nis.entity.MonitorModule">
|
<select id="getModuleBackupData" resultType="net.geedge.entity.MonitorModule">
|
||||||
select * from monitor_module_copy;
|
select * from monitor_module_copy;
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
<?xml version="1.0" encoding="UTF-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">
|
<!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 * from monitor_endpoint_copy;
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
<?xml version="1.0" encoding="UTF-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">
|
<!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">
|
<select id="allTables" resultType="java.lang.String">
|
||||||
show tables
|
show tables
|
||||||
@@ -18,4 +18,4 @@
|
|||||||
<select id="allTriggers" resultType="java.lang.String">
|
<select id="allTriggers" resultType="java.lang.String">
|
||||||
select trigger_name FROM information_schema.`TRIGGERS` where trigger_schema = #{databaseName}
|
select trigger_name FROM information_schema.`TRIGGERS` where trigger_schema = #{databaseName}
|
||||||
</select>
|
</select>
|
||||||
</mapper>
|
</mapper>
|
||||||
|
|||||||
Reference in New Issue
Block a user