|
|
|
@ -104,17 +104,21 @@ AND ${by} = #{term}
|
|
|
|
|
<include refid="selectFiles" />
|
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
<insert id="insertFile" parameterType="map">/* 파일 등록(fileMapper.insertFile) */
|
|
|
|
|
<insert id="insertFile" parameterType="map">
|
|
|
|
|
/* 파일 등록(fileMapper.insertFile) */
|
|
|
|
|
<selectKey keyProperty="file.id,file.path" keyColumn="NEW_ID,PATH" resultType="map" order="BEFORE">
|
|
|
|
|
SELECT NEW_ID, CONCAT(DIR, NEW_ID, '.', #{file.extension}) PATH
|
|
|
|
|
SELECT NEW_ID
|
|
|
|
|
, CONCAT(DIR, NEW_ID, '.', #{file.extension}) PATH
|
|
|
|
|
FROM (
|
|
|
|
|
SELECT NVL(MAX(FILE_ID) + 1, CONCAT(THIS_DAY, '00001')) NEW_ID
|
|
|
|
|
FROM (<include refid="utility.selectThisDay" />) B LEFT OUTER JOIN
|
|
|
|
|
TB_FILE A ON FILE_ID LIKE CONCAT(THIS_DAY, '%')
|
|
|
|
|
) T1, (
|
|
|
|
|
FROM (<include refid="utility.selectThisDay" />) B
|
|
|
|
|
LEFT OUTER JOIN TB_FILE A ON FILE_ID LIKE CONCAT(THIS_DAY, '%')
|
|
|
|
|
) T1
|
|
|
|
|
, (
|
|
|
|
|
<include refid="fileDirs" />
|
|
|
|
|
WHERE INF_TYPE = #{file.infoType}
|
|
|
|
|
) T2</selectKey>
|
|
|
|
|
) T2
|
|
|
|
|
</selectKey>
|
|
|
|
|
INSERT INTO TB_FILE (
|
|
|
|
|
FILE_ID
|
|
|
|
|
, INF_TYPE
|
|
|
|
|