| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- <?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.ruoyi.invest.mapper.TProjectDecisionMapper">
-
- <resultMap type="TProjectDecision" id="TProjectDecisionResult">
- <result property="id" column="id" />
- <result property="projectPoolId" column="project_pool_id" />
- <result property="participantsId" column="participants_id" />
- <result property="participants" column="participants" />
- <result property="provision" column="provision" />
- <result property="remark" column="remark" />
- <result property="delFlag" column="del_flag" />
- <result property="createBy" column="create_by" />
- <result property="createTime" column="create_time" />
- <result property="updateBy" column="update_by" />
- <result property="updateTime" column="update_time" />
- </resultMap>
- <sql id="selectTProjectDecisionVo">
- select id, project_pool_id, participants_id, participants, provision, remark, del_flag, create_by, create_time, update_by, update_time from t_project_decision
- </sql>
- <select id="selectTProjectDecisionList" parameterType="TProjectDecision" resultMap="TProjectDecisionResult">
- <include refid="selectTProjectDecisionVo"/>
- <where>
- <if test="projectPoolId != null and projectPoolId != ''"> and project_pool_id = #{projectPoolId}</if>
- <if test="participantsId != null and participantsId != ''"> and participants_id = #{participantsId}</if>
- <if test="participants != null and participants != ''"> and participants = #{participants}</if>
- <if test="provision != null and provision != ''"> and provision = #{provision}</if>
- </where>
- </select>
-
- <select id="selectTProjectDecisionById" parameterType="String" resultMap="TProjectDecisionResult">
- <include refid="selectTProjectDecisionVo"/>
- where id = #{id}
- </select>
-
- <insert id="insertTProjectDecision" parameterType="TProjectDecision">
- insert into t_project_decision
- <trim prefix="(" suffix=")" suffixOverrides=",">
- <if test="id != null">id,</if>
- <if test="procInstId != null">proc_inst_id,</if>
- <if test="projectPoolId != null">project_pool_id,</if>
- <if test="participantsId != null">participants_id,</if>
- <if test="participants != null">participants,</if>
- <if test="provision != null">provision,</if>
- <if test="remark != null">remark,</if>
- <if test="delFlag != null">del_flag,</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="needMeeting != null">need_meeting,</if>
- <if test="status != null">status,</if>
- </trim>
- <trim prefix="values (" suffix=")" suffixOverrides=",">
- <if test="id != null">#{id},</if>
- <if test="procInstId != null">#{procInstId},</if>
- <if test="projectPoolId != null">#{projectPoolId},</if>
- <if test="participantsId != null">#{participantsId},</if>
- <if test="participants != null">#{participants},</if>
- <if test="provision != null">#{provision},</if>
- <if test="remark != null">#{remark},</if>
- <if test="delFlag != null">#{delFlag},</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="needMeeting != null">#{needMeeting},</if>
- <if test="status != null">#{status},</if>
- </trim>
- </insert>
- <update id="updateTProjectDecision" parameterType="TProjectDecision">
- update t_project_decision
- <trim prefix="SET" suffixOverrides=",">
- <if test="projectPoolId != null">project_pool_id = #{projectPoolId},</if>
- <if test="participantsId != null">participants_id = #{participantsId},</if>
- <if test="participants != null">participants = #{participants},</if>
- <if test="provision != null">provision = #{provision},</if>
- <if test="remark != null">remark = #{remark},</if>
- <if test="delFlag != null">del_flag = #{delFlag},</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="needMeeting != null">need_meeting = #{needMeeting},</if>
- <if test="status != null">status = #{status},</if>
- </trim>
- where id = #{id}
- </update>
- <delete id="deleteTProjectDecisionById" parameterType="String">
- delete from t_project_decision where id = #{id}
- </delete>
- <delete id="deleteTProjectDecisionByIds" parameterType="String">
- delete from t_project_decision where id in
- <foreach item="id" collection="array" open="(" separator="," close=")">
- #{id}
- </foreach>
- </delete>
- <select id="listProjectPoolIdNew" parameterType="String" resultMap="TProjectDecisionResult">
- <include refid="selectTProjectDecisionVo"/>
- where project_pool_id = #{projectPoolId} and del_flag = 0
- ORDER BY create_time DESC LIMIT 1
- </select>
- </mapper>
|