123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- <?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.supervision.thought.mapper.ThoughtPlanMapper">
- <resultMap type="ThoughtPlan" id="ThoughtPlanResult">
- <result property="id" column="id" />
- <result property="planName" column="plan_name" />
- <result property="planStartTime" column="plan_start_time" />
- <result property="planEndTime" column="plan_end_time" />
- <result property="planIntroduction" column="plan_introduction" />
- <result property="filePath" column="file_path" />
- <result property="fileName" column="file_name" />
- <result property="createTime" column="create_time" />
- <result property="updateTime" column="update_time" />
- <result property="createName" column="create_name" />
- <result property="createId" column="create_id" />
- <result property="remark" column="remark" />
- <result property="planNumber" column="plan_number" />
- <result property="responseNumber" column="response_number" />
- <result property="unitId" column="unit_id" />
- <result property="state" column="state" />
- </resultMap>
- <sql id="selectThoughtPlanVo">
- select id, plan_name, plan_start_time, plan_end_time, plan_introduction, file_path, file_name, create_time, update_time, create_name, create_id, remark, plan_number, response_number, unit_id, state from thought_plan
- </sql>
- <select id="selectThoughtPlanList" parameterType="ThoughtPlan" resultMap="ThoughtPlanResult">
- <include refid="selectThoughtPlanVo"/>
- <where>
- <if test="planName != null and planName != ''"> and plan_name like concat('%', #{planName}, '%')</if>
- <if test="planStartTime != null "> and plan_start_time = #{planStartTime}</if>
- <if test="planEndTime != null "> and plan_end_time = #{planEndTime}</if>
- <if test="planIntroduction != null and planIntroduction != ''"> and plan_introduction = #{planIntroduction}</if>
- <if test="filePath != null and filePath != ''"> and file_path = #{filePath}</if>
- <if test="fileName != null and fileName != ''"> and file_name like concat('%', #{fileName}, '%')</if>
- <if test="createName != null and createName != ''"> and create_name like concat('%', #{createName}, '%')</if>
- <if test="createId != null "> and create_id = #{createId}</if>
- <if test="planNumber != null "> and plan_number = #{planNumber}</if>
- <if test="responseNumber != null "> and response_number = #{responseNumber}</if>
- <if test="unitId != null "> and unit_id = #{unitId}</if>
- <if test="state != null and state != ''"> and state = #{state}</if>
- </where>
- order by id desc
- </select>
- <select id="selectThoughtPlanById" parameterType="Long" resultMap="ThoughtPlanResult">
- <include refid="selectThoughtPlanVo"/>
- where id = #{id}
- </select>
- <select id="selectNewPlan" resultMap="ThoughtPlanResult">
- select max(id) id
- from thought_plan group by kong
- </select>
- <insert id="insertThoughtPlan" parameterType="ThoughtPlan" useGeneratedKeys="true" keyProperty="id">
- insert into thought_plan
- <trim prefix="(" suffix=")" suffixOverrides=",">
- <if test="planName != null">plan_name,</if>
- <if test="planStartTime != null">plan_start_time,</if>
- <if test="planEndTime != null">plan_end_time,</if>
- <if test="planIntroduction != null">plan_introduction,</if>
- <if test="filePath != null">file_path,</if>
- <if test="fileName != null">file_name,</if>
- <if test="createTime != null">create_time,</if>
- <if test="updateTime != null">update_time,</if>
- <if test="createName != null">create_name,</if>
- <if test="createId != null">create_id,</if>
- <if test="remark != null">remark,</if>
- <if test="planNumber != null">plan_number,</if>
- <if test="responseNumber != null">response_number,</if>
- <if test="unitId != null">unit_id,</if>
- <if test="state != null">state,</if>
- </trim>
- <trim prefix="values (" suffix=")" suffixOverrides=",">
- <if test="planName != null">#{planName},</if>
- <if test="planStartTime != null">#{planStartTime},</if>
- <if test="planEndTime != null">#{planEndTime},</if>
- <if test="planIntroduction != null">#{planIntroduction},</if>
- <if test="filePath != null">#{filePath},</if>
- <if test="fileName != null">#{fileName},</if>
- <if test="createTime != null">#{createTime},</if>
- <if test="updateTime != null">#{updateTime},</if>
- <if test="createName != null">#{createName},</if>
- <if test="createId != null">#{createId},</if>
- <if test="remark != null">#{remark},</if>
- <if test="planNumber != null">#{planNumber},</if>
- <if test="responseNumber != null">#{responseNumber},</if>
- <if test="unitId != null">#{unitId},</if>
- <if test="state != null">#{state},</if>
- </trim>
- </insert>
- <update id="updateThoughtPlan" parameterType="ThoughtPlan">
- update thought_plan
- <trim prefix="SET" suffixOverrides=",">
- <if test="planName != null">plan_name = #{planName},</if>
- <if test="planStartTime != null">plan_start_time = #{planStartTime},</if>
- <if test="planEndTime != null">plan_end_time = #{planEndTime},</if>
- <if test="planIntroduction != null">plan_introduction = #{planIntroduction},</if>
- <if test="filePath != null">file_path = #{filePath},</if>
- <if test="fileName != null">file_name = #{fileName},</if>
- <if test="createTime != null">create_time = #{createTime},</if>
- <if test="updateTime != null">update_time = #{updateTime},</if>
- <if test="createName != null">create_name = #{createName},</if>
- <if test="createId != null">create_id = #{createId},</if>
- <if test="remark != null">remark = #{remark},</if>
- <if test="planNumber != null">plan_number = #{planNumber},</if>
- <if test="responseNumber != null">response_number = #{responseNumber},</if>
- <if test="unitId != null">unit_id = #{unitId},</if>
- <if test="state != null">state = #{state},</if>
- </trim>
- where id = #{id}
- </update>
- <delete id="deleteThoughtPlanById" parameterType="Long">
- delete from thought_plan where id = #{id}
- </delete>
- <delete id="deleteThoughtPlanByIds" parameterType="String">
- delete from thought_plan where id in
- <foreach item="id" collection="array" open="(" separator="," close=")">
- #{id}
- </foreach>
- </delete>
- </mapper>
|