26 lines
842 B
XML
26 lines
842 B
XML
<?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="com.yam.app.comment.domain.CommentRepository">
|
|
|
|
<insert id="save" parameterType="com.yam.app.comment.domain.Comment">
|
|
INSERT INTO COMMENT(content, created_at, modified_at, status, article_id, member_id)
|
|
VALUES (#{content}, #{createAt}, #{modifiedAt}, #{status}, #{articleId}, #{memberId})
|
|
</insert>
|
|
|
|
<update id="update" parameterType="com.yam.app.comment.domain.Comment">
|
|
UPDATE COMMENT
|
|
SET content = #{content},
|
|
modified_at = #{modifiedAt}
|
|
WHERE id = #{id}
|
|
</update>
|
|
|
|
<update id="delete" parameterType="com.yam.app.comment.domain.Comment">
|
|
UPDATE COMMNET
|
|
SET status = #{status}
|
|
WHERE id = #{id}
|
|
</update>
|
|
|
|
</mapper>
|