|
|
|
@ -1,8 +1,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">
|
|
|
|
|
<mapper namespace="cokr.xit.fims.sprt.dao.OtptStngMapper">
|
|
|
|
|
<mapper namespace="cokr.xit.fims.cmmn.dao.OtptStngMapper">
|
|
|
|
|
|
|
|
|
|
<select id="selectOtptBscStng" parameterType="cokr.xit.fims.sprt.OtptStngQuery" resultType="dataobject">
|
|
|
|
|
<select id="selectOtptBscStng" parameterType="cokr.xit.fims.cmmn.OtptStngQuery" resultType="dataobject">
|
|
|
|
|
/* 출력물 기본 설정 조회(otptStngMapper.selectOtptBscStng) */
|
|
|
|
|
SELECT OTPT_BSC_ID
|
|
|
|
|
, SGG_CD
|
|
|
|
@ -21,7 +21,7 @@ SELECT OTPT_BSC_ID
|
|
|
|
|
AND PAPER_SE_CD = #{paperSeCd}
|
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
<insert id="insertBscStng" parameterType="cokr.xit.fims.sprt.OtptForm">
|
|
|
|
|
<insert id="insertBscStng" parameterType="cokr.xit.fims.cmmn.OtptForm">
|
|
|
|
|
/* 출력 기본 설정 등록(otptStngMapper.insertBscStng) */
|
|
|
|
|
<selectKey resultType="string" keyProperty="otptBscId" keyColumn="NEW_ID" order="BEFORE">
|
|
|
|
|
SELECT
|
|
|
|
@ -63,7 +63,7 @@ INSERT
|
|
|
|
|
)
|
|
|
|
|
</insert>
|
|
|
|
|
|
|
|
|
|
<update id="updateBscStng" parameterType="cokr.xit.fims.sprt.OtptForm">
|
|
|
|
|
<update id="updateBscStng" parameterType="cokr.xit.fims.cmmn.OtptForm">
|
|
|
|
|
/* 출력 기본 설정 수정(otptStngMapper.updateBscStng) */
|
|
|
|
|
UPDATE TB_OTPT_BSC_STNG
|
|
|
|
|
SET FOLD_LINE_PSTN_SE_CD = #{foldLinePstnSeCd}
|
|
|
|
@ -78,7 +78,7 @@ UPDATE TB_OTPT_BSC_STNG
|
|
|
|
|
AND USE_YN = 'Y'
|
|
|
|
|
</update>
|
|
|
|
|
|
|
|
|
|
<select id="selectOtptArtclStngList" parameterType="cokr.xit.fims.sprt.OtptStngQuery" resultType="dataobject">
|
|
|
|
|
<select id="selectOtptArtclStngList" parameterType="cokr.xit.fims.cmmn.OtptStngQuery" resultType="dataobject">
|
|
|
|
|
/* 출력 항목 설정 조회(otptStngMapper.selectOtptArtclStngList) */
|
|
|
|
|
SELECT OTPT_FORM_ID
|
|
|
|
|
, SGG_CD
|
|
|
|
@ -106,7 +106,7 @@ SELECT OTPT_FORM_ID
|
|
|
|
|
ORDER BY OTPT_ARTCL_ORDR
|
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
<insert id="insertArtclStng" parameterType="cokr.xit.fims.sprt.OtptArtclStng">
|
|
|
|
|
<insert id="insertArtclStng" parameterType="cokr.xit.fims.cmmn.OtptArtclStng">
|
|
|
|
|
/* 출력 설정 등록(otptStngMapper.insertArtclStng) */
|
|
|
|
|
<selectKey resultType="string" keyProperty="otptFormId" keyColumn="NEW_ID" order="BEFORE">
|
|
|
|
|
SELECT
|
|
|
|
@ -160,7 +160,7 @@ INSERT
|
|
|
|
|
)
|
|
|
|
|
</insert>
|
|
|
|
|
|
|
|
|
|
<update id="updateArtclStng" parameterType="cokr.xit.fims.sprt.OtptArtclStng">
|
|
|
|
|
<update id="updateArtclStng" parameterType="cokr.xit.fims.cmmn.OtptArtclStng">
|
|
|
|
|
/* 출력 설정 수정(otptStngMapper.updateArtclStng) */
|
|
|
|
|
UPDATE TB_OTPT_FORM_STNG
|
|
|
|
|
SET OTPT_ARTCL_NM = #{otptArtclNm}
|
|
|
|
@ -181,7 +181,7 @@ UPDATE TB_OTPT_FORM_STNG
|
|
|
|
|
AND USE_YN = 'Y'
|
|
|
|
|
</update>
|
|
|
|
|
|
|
|
|
|
<update id="deleteArtclStng" parameterType="cokr.xit.fims.sprt.OtptForm">
|
|
|
|
|
<update id="deleteArtclStng" parameterType="cokr.xit.fims.cmmn.OtptForm">
|
|
|
|
|
/* 출력 설정 삭제(otptStngMapper.deleteArtclStng) */
|
|
|
|
|
UPDATE TB_OTPT_FORM_STNG
|
|
|
|
|
SET USE_YN = 'N'
|