ChatMessageMapper.xml 2.56 KB
<?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.pipihelper.project.feishu.dao.ChatMessageDao">
    <resultMap id="ChatMessageResultMap" type="com.pipihelper.project.feishu.entity.ChatMessage">
        <id column="id" property="id"/>
        <result column="chat_id" property="chatId"/>
        <result column="message_id" property="messageId"/>
        <result column="type" property="type"/>

    </resultMap>

    <!-- <resultMap id="BuffConfigResultBOMap" type="com.pipihelper.project.feishu.entity.Deployee"
                extends="ChatMessageResultMap">
     </resultMap>-->

    <sql id="Base_Column_List">
        id,chat_id,message_id,type
    </sql>

    <select id="findById" parameterType="java.lang.Integer" resultMap="ChatMessageResultMap">
        select
        <include refid="Base_Column_List"/>
        from t_chat_message
        <where>
            id = #{id}
        </where>
    </select>


    <delete id="deleteAll">
    delete from t_chat_message
    </delete>

    <select id="findListChatAndType" resultMap="ChatMessageResultMap">
        select
        <include refid="Base_Column_List"/>
        from t_chat_message
        <where>
            <if test="chatId != null">
                and chat_id = #{chatId}
            </if>
            <if test="type != null">
                and type = #{type}
            </if>
        </where>
    </select>


    <select id="findAll" resultMap="ChatMessageResultMap">
        select
        <include refid="Base_Column_List"/>
        from t_chat_message
    </select>

    <delete id="deleteById" parameterType="java.lang.Integer">
        delete from t_chat_message
        <where>
            id = #{id}
        </where>
    </delete>

    <insert id="create" useGeneratedKeys="true" keyProperty="id"
            parameterType="com.pipihelper.project.feishu.entity.Employee">
        insert into t_chat_message (chat_id, message_id, type)
        values ( #{chatId}, #{messageId},#{type})
    </insert>

    <update id="update" parameterType="com.pipihelper.project.feishu.entity.Employee">
        update t_chat_message
        <set>
            <if test="chatId != null">
                chat_id = #{chatId},
            </if>

            <if test="messageId != null">
                message_id = #{messageId},
            </if>

            <if test="type != null">
                type = #{type},
            </if>
        </set>
        <where>
            id = #{id}
        </where>
    </update>


</mapper>