로그인 및 메인 화면 수정 변경

This commit is contained in:
kimre
2022-07-10 20:53:26 +09:00
parent b2ff509948
commit fb40f49f09
61 changed files with 3660 additions and 1174 deletions

View File

@@ -52,7 +52,7 @@
<sql id="sndnoBlckCondition">
<if test="regId != null and regId != ''">
AND esb.BLCK_SNDRNO LIKE UPPER(CONCAT('%', #{regId}, '%'))
AND esb.REG_ID LIKE UPPER(CONCAT('%', #{regId}, '%'))
</if>
<if test="sndblckTpCd != null and sndblckTpCd != ''">
AND esb.SNDBLCK_TP_CD = #{sndblckTpCd}
@@ -126,7 +126,7 @@
</if>
WHERE BLCK_SNDRNO = #{blckSndrno}
</update>
<delete id="deleteSndrnoBlck" parameterType="kr.co.uplus.ez.api.riskMgt.dto.SendNumDeleteIntrcpReqDto">
/* riskMgt-mapper.xml(deleteSndrnoBlck) */
DELETE
@@ -142,6 +142,10 @@
SELECT
COUNT(*) AS TOTAL_CNT
FROM
(SELECT
esu.CUST_SEQ
,er.RCVBLCKNO
FROM
${HUBEZ_COMMON}.EZ_RCVBLCK_080 er
INNER JOIN ${HUBEZ_COMMON}.EZ_SVC_USER esu
ON
@@ -152,6 +156,7 @@
WHERE
1 = 1
<include refid="selectRcvblck080Condition"/>
GROUP BY esu.CUST_SEQ, er.RCVBLCKNO) A
</select>
<select id="selectRcvblck080List" parameterType="kr.co.uplus.ez.api.riskMgt.dto.ZezNumIntrcpListReqDto" resultType="kr.co.uplus.ez.api.riskMgt.dto.ZezNumIntrcpList">
@@ -184,6 +189,7 @@
ON esu.CUST_SEQ = eci.CUST_SEQ
WHERE 1 = 1
<include refid="selectRcvblck080Condition"/>
GROUP BY esu.CUST_SEQ, er.RCVBLCKNO
ORDER BY er.REG_DT DESC
LIMIT #{page}, #{pagePerRows}
) A, ( SELECT @ROWNUM := #{page} ) AS R
@@ -256,7 +262,7 @@
AND UPPER(ebd.WORD) LIKE UPPER(CONCAT('%', #{word}, '%'))
</if>
</sql>
<select id="selectMsgBlckwordDetail" parameterType="kr.co.uplus.ez.api.riskMgt.dto.MsgIntrcpDetailReqDto" resultType="kr.co.uplus.ez.api.riskMgt.dto.MsgIntrcpDetail">
/* riskMgt-mapper.xml(selectMsgBlckwordDetail) */
SELECT
@@ -269,7 +275,7 @@
${HUBEZ_COMMON}.EZ_MSG_BLCKWORD emb
WHERE emb.SEQ_NO = #{seqNo}
</select>
<select id="selectBlckwordDtlList" parameterType="kr.co.uplus.ez.api.riskMgt.dto.MsgIntrcpDetailReqDto" resultType="kr.co.uplus.ez.api.riskMgt.dto.MsgBlckwordList">
/* riskMgt-mapper.xml(selectBlckwordDtlList) */
SELECT
@@ -307,7 +313,7 @@
, #{regId}
, NOW()
, #{regId}
, NOW())
, NOW())
</insert>
<insert id="insertBlckwordDtl" parameterType="java.util.List">
@@ -319,9 +325,9 @@
, REG_ID
, REG_DT
) VALUES
<foreach collection="list" item="item" index="i"
<foreach collection="list" item="item" index="i"
separator=",">
(#{item.seqNo}, #{item.word}, #{item.regId}, NOW() )
(#{item.seqNo}, #{item.word}, #{item.regId}, NOW() )
</foreach>
</insert>