|
|
|
@ -57,8 +57,6 @@ SELECT LOG_ID
|
|
|
|
|
<include refid="utility.paging-suffix" /></select>
|
|
|
|
|
|
|
|
|
|
<insert id="insertLog" parameterType="cokr.xit.base.syslog.ServiceLog">/* 시스템 로그 등록(loggingMapper.insertLog) */
|
|
|
|
|
<selectKey keyProperty="id" keyColumn="NEW_ID" resultType="string" order="BEFORE">
|
|
|
|
|
select CONCAT(<include refid="utility.today" />, LPAD(NEXTVAL(SQ_SYSLOG), 16, '0')) NEW_ID</selectKey>
|
|
|
|
|
INSERT INTO TB_SYS_LOG (
|
|
|
|
|
LOG_ID <!-- 로그 ID -->
|
|
|
|
|
, LOG_TYPE <!-- 로그 유형 -->
|
|
|
|
@ -73,7 +71,7 @@ INSERT INTO TB_SYS_LOG (
|
|
|
|
|
, IP_ADDR <!-- IP 주소 -->
|
|
|
|
|
, REG_DT <!-- 등록 일시 -->
|
|
|
|
|
) VALUES (
|
|
|
|
|
#{id} <!-- 로그 ID -->
|
|
|
|
|
CONCAT(<include refid="utility.today" />, LPAD(NEXTVAL(SQ_SYSLOG), 16, '0')) <!-- 로그 ID -->
|
|
|
|
|
, #{type} <!-- 로그 유형 -->
|
|
|
|
|
, #{url} <!-- URL -->
|
|
|
|
|
, #{className} <!-- 클래스 이름 -->
|
|
|
|
|