summaryrefslogtreecommitdiffstats
path: root/ResmanagementService/service/src/main/resources/mybatis/mysql/NsEntityMapper.xml
diff options
context:
space:
mode:
Diffstat (limited to 'ResmanagementService/service/src/main/resources/mybatis/mysql/NsEntityMapper.xml')
-rw-r--r--ResmanagementService/service/src/main/resources/mybatis/mysql/NsEntityMapper.xml143
1 files changed, 143 insertions, 0 deletions
diff --git a/ResmanagementService/service/src/main/resources/mybatis/mysql/NsEntityMapper.xml b/ResmanagementService/service/src/main/resources/mybatis/mysql/NsEntityMapper.xml
new file mode 100644
index 0000000..a792694
--- /dev/null
+++ b/ResmanagementService/service/src/main/resources/mybatis/mysql/NsEntityMapper.xml
@@ -0,0 +1,143 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!--
+ Copyright 2017, Huawei Technologies Co., Ltd.
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ 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.resmanagement.service.mapper.NsEntityMapper" >
+ <resultMap id="BaseResultMap" type="org.onap.vfc.nfvo.resmanagement.service.entity.NsEntity" >
+ <id column="ID" property="id" jdbcType="VARCHAR" />
+ <result column="NAME" property="name" jdbcType="VARCHAR" />
+ <result column="NSD_ID" property="nsdId" jdbcType="VARCHAR" />
+ <result column="DESCRIPTION" property="description" jdbcType="VARCHAR" />
+ <result column="STATUS" property="status" jdbcType="VARCHAR" />
+ <result column="CTEATE_TIME" property="cteateTime" jdbcType="VARCHAR" />
+ <result column="LAST_UPDATE" property="lastUpdate" jdbcType="VARCHAR" />
+ </resultMap>
+
+ <sql id="Base_Column_List" >
+ ID, NAME, NSD_ID, DESCRIPTION, STATUS, CTEATE_TIME, LAST_UPDATE
+ </sql>
+ <select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.String" >
+ select
+ <include refid="Base_Column_List" />
+ from ns
+ where ID = #{id,jdbcType=VARCHAR}
+ </select>
+ <select id="getAllNs" resultMap="BaseResultMap" parameterType="java.util.Map">
+ select
+ <include refid="Base_Column_List" />
+ from vnf
+ <where>
+ <if test="id != null">
+ AND ID = #{id,jdbcType=VARCHAR}
+ </if>
+ </where>
+ </select>
+ <delete id="deleteByPrimaryKey" parameterType="java.lang.String" >
+ delete from ns
+ where ID = #{id,jdbcType=VARCHAR}
+ </delete>
+ <insert id="insert" parameterType="org.onap.vfc.nfvo.resmanagement.service.entity.NsEntity" >
+ insert into ns (ID, NAME, NSD_ID,
+ DESCRIPTION, STATUS, CTEATE_TIME,
+ LAST_UPDATE)
+ values (#{id,jdbcType=VARCHAR}, #{name,jdbcType=VARCHAR}, #{nsdId,jdbcType=VARCHAR},
+ #{description,jdbcType=VARCHAR}, #{status,jdbcType=VARCHAR}, #{cteateTime,jdbcType=VARCHAR},
+ #{lastUpdate,jdbcType=VARCHAR})
+ </insert>
+ <insert id="insertSelective" parameterType="org.onap.vfc.nfvo.resmanagement.service.entity.NsEntity" >
+ insert into ns
+ <trim prefix="(" suffix=")" suffixOverrides="," >
+ <if test="id != null" >
+ ID,
+ </if>
+ <if test="name != null" >
+ NAME,
+ </if>
+ <if test="nsdId != null" >
+ NSD_ID,
+ </if>
+ <if test="description != null" >
+ DESCRIPTION,
+ </if>
+ <if test="status != null" >
+ STATUS,
+ </if>
+ <if test="cteateTime != null" >
+ CTEATE_TIME,
+ </if>
+ <if test="lastUpdate != null" >
+ LAST_UPDATE,
+ </if>
+ </trim>
+ <trim prefix="values (" suffix=")" suffixOverrides="," >
+ <if test="id != null" >
+ #{id,jdbcType=VARCHAR},
+ </if>
+ <if test="name != null" >
+ #{name,jdbcType=VARCHAR},
+ </if>
+ <if test="nsdId != null" >
+ #{nsdId,jdbcType=VARCHAR},
+ </if>
+ <if test="description != null" >
+ #{description,jdbcType=VARCHAR},
+ </if>
+ <if test="status != null" >
+ #{status,jdbcType=VARCHAR},
+ </if>
+ <if test="cteateTime != null" >
+ #{cteateTime,jdbcType=VARCHAR},
+ </if>
+ <if test="lastUpdate != null" >
+ #{lastUpdate,jdbcType=VARCHAR},
+ </if>
+ </trim>
+ </insert>
+ <update id="updateByPrimaryKeySelective" parameterType="org.onap.vfc.nfvo.resmanagement.service.entity.NsEntity" >
+ update ns
+ <set >
+ <if test="name != null" >
+ NAME = #{name,jdbcType=VARCHAR},
+ </if>
+ <if test="nsdId != null" >
+ NSD_ID = #{nsdId,jdbcType=VARCHAR},
+ </if>
+ <if test="description != null" >
+ DESCRIPTION = #{description,jdbcType=VARCHAR},
+ </if>
+ <if test="status != null" >
+ STATUS = #{status,jdbcType=VARCHAR},
+ </if>
+ <if test="cteateTime != null" >
+ CTEATE_TIME = #{cteateTime,jdbcType=VARCHAR},
+ </if>
+ <if test="lastUpdate != null" >
+ LAST_UPDATE = #{lastUpdate,jdbcType=VARCHAR},
+ </if>
+ </set>
+ where ID = #{id,jdbcType=VARCHAR}
+ </update>
+ <update id="updateByPrimaryKey" parameterType="org.onap.vfc.nfvo.resmanagement.service.entity.NsEntity" >
+ update ns
+ set NAME = #{name,jdbcType=VARCHAR},
+ NSD_ID = #{nsdId,jdbcType=VARCHAR},
+ DESCRIPTION = #{description,jdbcType=VARCHAR},
+ STATUS = #{status,jdbcType=VARCHAR},
+ CTEATE_TIME = #{cteateTime,jdbcType=VARCHAR},
+ LAST_UPDATE = #{lastUpdate,jdbcType=VARCHAR}
+ where ID = #{id,jdbcType=VARCHAR}
+ </update>
+</mapper> \ No newline at end of file