Browse Source

增加跟进记录mapper

zjc 1 year ago
parent
commit
aea6210951
1 changed files with 106 additions and 0 deletions
  1. 106 0
      ruoyi-system/src/main/resources/mapper/invest/TProjectRecordMapper.xml

+ 106 - 0
ruoyi-system/src/main/resources/mapper/invest/TProjectRecordMapper.xml

@@ -0,0 +1,106 @@
+<?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.system.mapper.invest.TProjectRecordMapper">
+    
+    <resultMap type="TProjectRecord" id="TProjectRecordResult">
+        <result property="id"    column="id"    />
+        <result property="porjectId"    column="porject_id"    />
+        <result property="contacts"    column="contacts"    />
+        <result property="realityUpDate"    column="reality_up_date"    />
+        <result property="upPerson"    column="up_person"    />
+        <result property="upWay"    column="up_way"    />
+        <result property="upContent"    column="up_content"    />
+        <result property="mark"    column="mark"    />
+        <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="selectTProjectRecordVo">
+        select id, porject_id, contacts, reality_up_date, up_person, up_way, up_content, mark, del_flag, create_by, create_time, update_by, update_time from t_project_record
+    </sql>
+
+    <select id="selectTProjectRecordList" parameterType="TProjectRecord" resultMap="TProjectRecordResult">
+        <include refid="selectTProjectRecordVo"/>
+        <where>  
+            <if test="porjectId != null  and porjectId != ''"> and porject_id = #{porjectId}</if>
+            <if test="contacts != null  and contacts != ''"> and contacts = #{contacts}</if>
+            <if test="realityUpDate != null "> and reality_up_date = #{realityUpDate}</if>
+            <if test="upPerson != null  and upPerson != ''"> and up_person = #{upPerson}</if>
+            <if test="upWay != null  and upWay != ''"> and up_way = #{upWay}</if>
+        </where>
+    </select>
+    
+    <select id="selectTProjectRecordById" parameterType="String" resultMap="TProjectRecordResult">
+        <include refid="selectTProjectRecordVo"/>
+        where id = #{id}
+    </select>
+        
+    <insert id="insertTProjectRecord" parameterType="TProjectRecord">
+        insert into t_project_record
+        <trim prefix="(" suffix=")" suffixOverrides=",">
+            <if test="id != null">id,</if>
+            <if test="porjectId != null">porject_id,</if>
+            <if test="contacts != null">contacts,</if>
+            <if test="realityUpDate != null">reality_up_date,</if>
+            <if test="upPerson != null">up_person,</if>
+            <if test="upWay != null">up_way,</if>
+            <if test="upContent != null">up_content,</if>
+            <if test="mark != null">mark,</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>
+         </trim>
+        <trim prefix="values (" suffix=")" suffixOverrides=",">
+            <if test="id != null">#{id},</if>
+            <if test="porjectId != null">#{porjectId},</if>
+            <if test="contacts != null">#{contacts},</if>
+            <if test="realityUpDate != null">#{realityUpDate},</if>
+            <if test="upPerson != null">#{upPerson},</if>
+            <if test="upWay != null">#{upWay},</if>
+            <if test="upContent != null">#{upContent},</if>
+            <if test="mark != null">#{mark},</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>
+         </trim>
+    </insert>
+
+    <update id="updateTProjectRecord" parameterType="TProjectRecord">
+        update t_project_record
+        <trim prefix="SET" suffixOverrides=",">
+            <if test="porjectId != null">porject_id = #{porjectId},</if>
+            <if test="contacts != null">contacts = #{contacts},</if>
+            <if test="realityUpDate != null">reality_up_date = #{realityUpDate},</if>
+            <if test="upPerson != null">up_person = #{upPerson},</if>
+            <if test="upWay != null">up_way = #{upWay},</if>
+            <if test="upContent != null">up_content = #{upContent},</if>
+            <if test="mark != null">mark = #{mark},</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>
+        </trim>
+        where id = #{id}
+    </update>
+
+    <delete id="deleteTProjectRecordById" parameterType="String">
+        delete from t_project_record where id = #{id}
+    </delete>
+
+    <delete id="deleteTProjectRecordByIds" parameterType="String">
+        delete from t_project_record where id in 
+        <foreach item="id" collection="array" open="(" separator="," close=")">
+            #{id}
+        </foreach>
+    </delete>
+</mapper>