최초 세팅

This commit is contained in:
bd091
2025-10-18 11:06:19 +09:00
commit bf0778601f
2497 changed files with 572903 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
<?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="MobileKakaoTemplate">
<select id="selectListKakaoTemplateOption" parameterType="hashmap" resultType="hashmap">
SELECT MKT.MU_KAKAO_TEMPLATE_ID AS "muKakaoTemplateId"
,MKT.TEMPLATE_CODE AS "templateCode"
,MKT.TITLE AS "title"
FROM MU_KAKAO_TEMPLATE AS MKT
WHERE MKT.USE_YN = 'Y'
ORDER BY TITLE ASC
</select>
<select id="selectKakaoTemplate" parameterType="hashmap" resultType="hashmap">
SELECT MKT.MU_KAKAO_TEMPLATE_ID AS "muKakaoTemplateId"
,MKT.TEMPLATE_CODE AS "templateCode"
,MKT.TITLE AS "title"
,MKT.CONTENT AS "content"
FROM MU_KAKAO_TEMPLATE AS MKT
WHERE MKT.USE_YN = 'Y'
AND MKT.TEMPLATE_CODE = #{templateCode}
LIMIT 0, 1
</select>
</mapper>