summaryrefslogtreecommitdiffstats
path: root/ResmanagementService/service/src/main/resources/mybatis/mysql/LocationMapper.xml
diff options
context:
space:
mode:
Diffstat (limited to 'ResmanagementService/service/src/main/resources/mybatis/mysql/LocationMapper.xml')
-rw-r--r--ResmanagementService/service/src/main/resources/mybatis/mysql/LocationMapper.xml12
1 files changed, 6 insertions, 6 deletions
diff --git a/ResmanagementService/service/src/main/resources/mybatis/mysql/LocationMapper.xml b/ResmanagementService/service/src/main/resources/mybatis/mysql/LocationMapper.xml
index 22e8885..431c151 100644
--- a/ResmanagementService/service/src/main/resources/mybatis/mysql/LocationMapper.xml
+++ b/ResmanagementService/service/src/main/resources/mybatis/mysql/LocationMapper.xml
@@ -16,9 +16,9 @@ limitations under the License.
-->
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
-<mapper namespace="org.onap.vfc.nfvo.res.service.mapper.LocationMapper">
+<mapper namespace="org.onap.vfc.nfvo.resmanagement.service.mapper.LocationMapper">
<resultMap id="BaseResultMap"
- type="org.onap.vfc.nfvo.res.service.entity.LocationEntity">
+ type="org.onap.vfc.nfvo.resmanagement.service.entity.LocationEntity">
<id column="ID" property="id" jdbcType="VARCHAR" />
<result column="COUNTRY" property="country" jdbcType="VARCHAR" />
@@ -68,7 +68,7 @@ limitations under the License.
where ID = #{id,jdbcType=VARCHAR}
</delete>
<insert id="addLocation"
- parameterType="org.onap.vfc.nfvo.res.service.entity.LocationEntity">
+ parameterType="org.onap.vfc.nfvo.resmanagement.service.entity.LocationEntity">
insert into location (ID, COUNTRY, LOCATION,
LATITUDE, LONGITUDE, DESCRIPTION)
@@ -77,7 +77,7 @@ limitations under the License.
#{latitude,jdbcType=VARCHAR}, #{longitude,jdbcType=VARCHAR}, #{description,jdbcType=VARCHAR})
</insert>
<insert id="addLocationSelective"
- parameterType="org.onap.vfc.nfvo.res.service.entity.LocationEntity">
+ parameterType="org.onap.vfc.nfvo.resmanagement.service.entity.LocationEntity">
insert into location
<trim prefix="(" suffix=")" suffixOverrides=",">
@@ -122,7 +122,7 @@ limitations under the License.
</trim>
</insert>
<update id="updateLocationSelective"
- parameterType="org.onap.vfc.nfvo.res.service.entity.LocationEntity">
+ parameterType="org.onap.vfc.nfvo.resmanagement.service.entity.LocationEntity">
update location
<set>
@@ -145,7 +145,7 @@ limitations under the License.
where ID = #{id,jdbcType=VARCHAR}
</update>
<update id="updateLocation"
- parameterType="org.onap.vfc.nfvo.res.service.entity.LocationEntity">
+ parameterType="org.onap.vfc.nfvo.resmanagement.service.entity.LocationEntity">
update location
set COUNTRY = #{country,jdbcType=VARCHAR},