
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
<?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="kr.co.takensoft.ai.system.projectLog.dao.ProjectLogDAO">
<!--
작 성 자 : 박현정
작 성 일 : 2025.07.10
내 용 : 프로젝트 로그 등록
-->
<insert id="saveProjectLog" parameterType="projectLogVO">
INSERT INTO project_log
(project_log_id,
project_group_id,
action_type,
use_at,
created_at,
updated_at)
VALUES (
#{projectLogId},
#{projectGroupId},
#{actionType},
#{useAt},
CURRENT_TIMESTAMP,
CURRENT_TIMESTAMP
)
</insert>
<!--
작 성 자 : 박현정
작 성 일 : 2025.07.11
내 용 : 활성(사용중) 데이터만 조회하도록 필터링
-->
<sql id="activeOnly">
use_at = 'Y'
</sql>
</mapper>