자동차 기본정보 조회 로그 등록 수정

master
mjkhan21 1 year ago
parent 07213a3bd7
commit 486d3ba9dd

@ -1,6 +1,6 @@
<?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="test">
<mapper namespace="cokr.xit.foundation.test.TestMapper">
<insert id="insert" parameterType="map">${sql}</insert>
@ -10,5 +10,4 @@
<update id="commit">COMMIT</update>
</mapper>

@ -173,7 +173,7 @@ SELECT PRYE <!-- 연식 -->
</where></select>
<insert id="insertBasicInfo" parameterType="map">/* vehicleInfoMapper.insertBasicInfo(자동차 기본사항 조회 로그 등록) */
<selectKey keyProperty="bsc_mttr_id" resultType="string" order="BEFORE">
<selectKey keyProperty="info.bsc_mttr_id" resultType="string" order="BEFORE">
SELECT CONCAT(
<include refid="utility.today" />
, LPAD(IFNULL(SUBSTRING(MAX(BSC_MTTR_ID), 9) + 1, 1), 22, '0')
@ -284,7 +284,7 @@ INSERT INTO TB_CAR_BSC_MTTR (
, REG_DT <!-- 등록일자 -->
, RGTR <!-- 등록자 -->
) VALUES (
#{info.bsc_mttr_id} <!-- 기본 사항 id -->
#{info.bsc_mttr_id} <!-- 기본 사항 id -->
, #{msg.messageId} <!-- 결과 메시지 id -->
, #{msg.messageName} <!-- 결과 메시지 명 -->
, #{msg.messageReason} <!-- 결과 메시지 사유 -->
@ -373,8 +373,6 @@ INSERT INTO TB_CAR_BSC_MTTR (
, #{info.frst_regist_rqrcno} <!-- 최초등록접수번호 -->
, #{info.vlnt_ersr_prvntc_ntice_de} <!-- 예고통지일 -->
, #{info.regist_instt_nm} <!-- 등록기관명 -->
, #{info.process_imprty_resn_code} <!-- 처리불가사유코드 -->
, #{info.process_imprty_resn_dtls} <!-- 처리불가사유명세 -->
, #{info.vims_prpos_se_code} <!-- 용도구분코드 -->
, #{info.vims_vhcty_asort_code} <!-- 차종종별코드 -->
, #{info.vims_vhcty_ty_code} <!-- 차종유형코드 -->

Loading…
Cancel
Save