You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
114 lines
6.0 KiB
114 lines
6.0 KiB
<?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.zc.business.mapper.DcEventImportantFileMapper">
|
|
|
|
<resultMap type="DcEventImportantFile" id="DcEventImportantFileResult">
|
|
<result property="id" column="id" />
|
|
<result property="eventId" column="event_id" />
|
|
<result property="fromDept" column="from_dept" />
|
|
<result property="createTime" column="create_time" />
|
|
<result property="title" column="title" />
|
|
<result property="toDept" column="to_dept" />
|
|
<result property="content" column="content" />
|
|
<result property="createName" column="create_name" />
|
|
<result property="phoneNumber" column="phone_number" />
|
|
<result property="issued" column="issued" />
|
|
<result property="type" column="type" />
|
|
<result property="status" column="status" />
|
|
</resultMap>
|
|
|
|
<sql id="selectDcEventImportantFileVo">
|
|
select id,event_id, from_dept, create_time, title, to_dept, content, create_name, phone_number, issued, type,status from dc_event_important_file
|
|
</sql>
|
|
|
|
<select id="selectDcEventImportantFileList" parameterType="DcEventImportantFile" resultMap="DcEventImportantFileResult">
|
|
<include refid="selectDcEventImportantFileVo"/>
|
|
<where>
|
|
<if test="eventId != null and fromDept != ''"> and event_id = #{eventId}</if>
|
|
<if test="fromDept != null and fromDept != ''"> and from_dept = #{fromDept}</if>
|
|
<if test="title != null and title != ''"> and title = #{title}</if>
|
|
<if test="toDept != null and toDept != ''"> and to_dept = #{toDept}</if>
|
|
<if test="content != null and content != ''"> and content = #{content}</if>
|
|
<if test="createName != null and createName != ''"> and create_name like concat('%', #{createName}, '%')</if>
|
|
<if test="phoneNumber != null and phoneNumber != ''"> and phone_number = #{phoneNumber}</if>
|
|
<if test="issued != null and issued != ''"> and issued = #{issued}</if>
|
|
<if test="type != null and type != ''"> and type = #{type}</if>
|
|
<if test="status != null and status != ''"> and status = #{status}</if>
|
|
</where>
|
|
</select>
|
|
|
|
<select id="selectDcEventImportantFileByEventId" parameterType="String" resultMap="DcEventImportantFileResult">
|
|
<include refid="selectDcEventImportantFileVo"/>
|
|
where id = #{id}
|
|
</select>
|
|
<select id="getImportantFileStatus" resultType="java.lang.Integer">
|
|
SELECT IFNULL(max(type),0) type
|
|
FROM `dc_event_important_file`
|
|
where event_id = #{eventId} and status = '1'
|
|
</select>
|
|
<select id="selectStatus" parameterType="DcEventImportantFile" resultType="java.lang.Integer">
|
|
select IFNULL(max(status),0) status from dc_event_important_file where event_id = #{eventId} and type = #{type}
|
|
</select>
|
|
|
|
<insert id="insertDcEventImportantFile" parameterType="DcEventImportantFile" useGeneratedKeys="true" keyProperty="id">
|
|
insert into dc_event_important_file
|
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
|
<if test="eventId != null">event_id,</if>
|
|
<if test="fromDept != null">from_dept,</if>
|
|
<if test="createTime != null">create_time,</if>
|
|
<if test="title != null">title,</if>
|
|
<if test="toDept != null">to_dept,</if>
|
|
<if test="content != null">content,</if>
|
|
<if test="createName != null">create_name,</if>
|
|
<if test="phoneNumber != null">phone_number,</if>
|
|
<if test="issued != null">issued,</if>
|
|
<if test="type != null">type,</if>
|
|
<if test="status != null">status,</if>
|
|
</trim>
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
<if test="eventId != null">#{eventId},</if>
|
|
<if test="fromDept != null">#{fromDept},</if>
|
|
<if test="createTime != null">#{createTime},</if>
|
|
<if test="title != null">#{title},</if>
|
|
<if test="toDept != null">#{toDept},</if>
|
|
<if test="content != null">#{content},</if>
|
|
<if test="createName != null">#{createName},</if>
|
|
<if test="phoneNumber != null">#{phoneNumber},</if>
|
|
<if test="issued != null">#{issued},</if>
|
|
<if test="type != null">#{type},</if>
|
|
<if test="status != null">#{status},</if>
|
|
</trim>
|
|
</insert>
|
|
|
|
<update id="updateDcEventImportantFile" parameterType="DcEventImportantFile">
|
|
update dc_event_important_file
|
|
<trim prefix="SET" suffixOverrides=",">
|
|
<if test="eventId != null">event_id = #{eventId},</if>
|
|
<if test="fromDept != null">from_dept = #{fromDept},</if>
|
|
<if test="fromDept != null">from_dept = #{fromDept},</if>
|
|
<if test="createTime != null">create_time = #{createTime},</if>
|
|
<if test="title != null">title = #{title},</if>
|
|
<if test="toDept != null">to_dept = #{toDept},</if>
|
|
<if test="content != null">content = #{content},</if>
|
|
<if test="createName != null">create_name = #{createName},</if>
|
|
<if test="phoneNumber != null">phone_number = #{phoneNumber},</if>
|
|
<if test="issued != null">issued = #{issued},</if>
|
|
<if test="type != null">type = #{type},</if>
|
|
<if test="status != null">status = #{status},</if>
|
|
</trim>
|
|
where id = #{id}
|
|
</update>
|
|
|
|
<delete id="deleteDcEventImportantFileByEventId" parameterType="String">
|
|
delete from dc_event_important_file where id = #{id}
|
|
</delete>
|
|
|
|
<delete id="deleteDcEventImportantFileByEventIds" parameterType="String">
|
|
delete from dc_event_important_file where id in
|
|
<foreach item="id" collection="array" open="(" separator="," close=")">
|
|
#{id}
|
|
</foreach>
|
|
</delete>
|
|
</mapper>
|