diff options
author | hekeguang <hekeguang@chinamobile.com> | 2022-08-22 21:16:25 +0800 |
---|---|---|
committer | hekeguang <hekeguang@chinamobile.com> | 2022-08-22 21:16:44 +0800 |
commit | 6433005256513ec2943ee2ea52f2844711e4d62f (patch) | |
tree | 779e80ca6f3e812a6d1c4fecb7ce577f6ab9fe88 /intentanalysis/src/main/resources/mybatis/sql/IMFRegInfoMapper.xml | |
parent | 235aa1c823235f98ee9564e717e77ca068c2b1f1 (diff) |
Add database code.
Issue-ID: USECASEUI-696
Change-Id: I1c8ce807ca1f2aaeebc8646d8a14df9f4b27a436
Signed-off-by: hekeguang <hekeguang@chinamobile.com>
Diffstat (limited to 'intentanalysis/src/main/resources/mybatis/sql/IMFRegInfoMapper.xml')
-rw-r--r-- | intentanalysis/src/main/resources/mybatis/sql/IMFRegInfoMapper.xml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/intentanalysis/src/main/resources/mybatis/sql/IMFRegInfoMapper.xml b/intentanalysis/src/main/resources/mybatis/sql/IMFRegInfoMapper.xml new file mode 100644 index 0000000..8f6cd3c --- /dev/null +++ b/intentanalysis/src/main/resources/mybatis/sql/IMFRegInfoMapper.xml @@ -0,0 +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="org.onap.usecaseui.intentanalysis.mapper.IMFRegInfoMapper"> + + <insert id="insertIMFRegInfoRegInfo"> + insert into intent_management_function_reg_info(imfr_info_id, imfr_info_description, support_model,handle_name,intent_function_type) + values + (#{imfregInfo.id}, #{imfregInfo.description}, #{imfregInfo.supportArea},#{imfregInfo.handleName},#{imfregInfo.intentFunctionType}) + </insert> + +</mapper> |