AttachmentMapper.xml 6.25 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.chinagas.modules.zjwjsb.mapper.AttachmentMapper">

    <resultMap type="Attachment" id="AttachmentResult">
        <result property="attachmentId"    column="attachment_id"    />
        <result property="attachmentName"    column="attachment_name"    />
        <result property="url"    column="url"    />
        <result property="createBy"    column="create_by"    />
        <result property="createTime"    column="create_time"    />
        <result property="updateBy"    column="update_by"    />
        <result property="updateTime"    column="update_time"    />
        <result property="processId"    column="process_id"    />
        <result property="path"    column="path"    />
        <result property="finalPath"    column="final_path"    />
    </resultMap>

    <sql id="selectAttachmentVo">
        select attachment_id, attachment_name, url, create_by, create_time, update_by, update_time, process_id, path, final_path from zjwjsb_attachment
    </sql>

    <select id="selectAttachmentList" parameterType="Attachment" resultMap="AttachmentResult">
        <include refid="selectAttachmentVo"/>
        <where>
            <if test="attachmentName != null  and attachmentName != ''"> and attachment_name like concat('%', #{attachmentName}, '%')</if>
            <if test="url != null  and url != ''"> and url = #{url}</if>
            <if test="processId != null  and processId != ''"> and process_id = #{processId}</if>
            <if test="path != null  and path != ''"> and path = #{path}</if>
            <if test="finalPath != null  and finalPath != ''"> and final_path = #{finalPath}</if>
        </where>
    </select>

    <select id="selectAttachmentByAttachmentId" parameterType="String" resultMap="AttachmentResult">
        <include refid="selectAttachmentVo"/>
        where attachment_id = #{attachmentId}
    </select>

    <insert id="insertAttachment" parameterType="Attachment">
        insert into zjwjsb_attachment
        <trim prefix="(" suffix=")" suffixOverrides=",">
            <if test="attachmentId != null">attachment_id,</if>
            <if test="attachmentName != null and attachmentName != ''">attachment_name,</if>
            <if test="url != null">url,</if>
            <if test="createBy != null">create_by,</if>
            <if test="createTime != null">create_time,</if>
            <if test="updateBy != null">update_by,</if>
            <if test="updateTime != null">update_time,</if>
            <if test="processId != null">process_id,</if>
            <if test="path != null">path,</if>
            <if test="finalPath != null">final_path,</if>
         </trim>
        <trim prefix="values (" suffix=")" suffixOverrides=",">
            <if test="attachmentId != null">#{attachmentId},</if>
            <if test="attachmentName != null and attachmentName != ''">#{attachmentName},</if>
            <if test="url != null">#{url},</if>
            <if test="createBy != null">#{createBy},</if>
            <if test="createTime != null">#{createTime},</if>
            <if test="updateBy != null">#{updateBy},</if>
            <if test="updateTime != null">#{updateTime},</if>
            <if test="processId != null">#{processId},</if>
            <if test="path != null">#{path},</if>
            <if test="finalPath != null">#{finalPath},</if>
         </trim>
    </insert>

    <update id="updateAttachment" parameterType="Attachment">
        update zjwjsb_attachment
        <trim prefix="SET" suffixOverrides=",">
            <if test="attachmentName != null and attachmentName != ''">attachment_name = #{attachmentName},</if>
            <if test="url != null">url = #{url},</if>
            <if test="createBy != null">create_by = #{createBy},</if>
            <if test="createTime != null">create_time = #{createTime},</if>
            <if test="updateBy != null">update_by = #{updateBy},</if>
            <if test="updateTime != null">update_time = #{updateTime},</if>
            <if test="processId != null">process_id = #{processId},</if>
            <if test="path != null">path = #{path},</if>
            <if test="finalPath != null">final_path = #{finalPath},</if>
        </trim>
        where attachment_id = #{attachmentId}
    </update>

    <delete id="deleteAttachmentByAttachmentId" parameterType="String">
        delete from zjwjsb_attachment where attachment_id = #{attachmentId}
    </delete>

    <delete id="deleteAttachmentByAttachmentIds" parameterType="String">
        delete from zjwjsb_attachment where attachment_id in
        <foreach item="attachmentId" collection="array" open="(" separator="," close=")">
            #{attachmentId}
        </foreach>
    </delete>

    <delete id="deleteAttachmentByProcessId" parameterType="String">
        delete from zjwjsb_attachment where process_id = #{processId}
    </delete>

    <insert id="insertAttachmentBatch" parameterType="Process">
        insert into zjwjsb_attachment(
        attachment_id,
        attachment_name,
        url,
        process_id,
        path,
        final_path,
        create_by,
        create_time
        ) values
        <foreach collection="attachmentList" separator="," item="attachment">
            (
            #{attachment.attachmentId},
            #{attachment.attachmentName},
            #{attachment.url},
            #{processId},
            #{attachment.path},
            #{attachment.finalPath},
             #{createBy},
            sysdate()
            )
        </foreach>
    </insert>

    <insert id="insertAttachments">
        insert into zjwjsb_attachment(
        attachment_id,
        attachment_name,
        url,
        process_id,
        path,
        final_path,
        create_by,
        create_time,
        attachment_type
        ) values
        <foreach collection="list" separator="," item="attachment">
            (
            #{attachment.attachmentId},
            #{attachment.attachmentName},
            #{attachment.url},
            #{attachment.processId},
            #{attachment.path},
            #{attachment.finalPath},
            #{attachment.createBy},
            sysdate(),
            #{attachment.attachmentType}
            )
        </foreach>
    </insert>
</mapper>