|
@@ -6,7 +6,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
|
<resultMap type="TProjectRecord" id="TProjectRecordResult">
|
|
|
<result property="id" column="id" />
|
|
|
- <result property="porjectId" column="porject_id" />
|
|
|
+ <result property="projectId" column="project_id" />
|
|
|
<result property="contacts" column="contacts" />
|
|
|
<result property="realityUpDate" column="reality_up_date" />
|
|
|
<result property="upPerson" column="up_person" />
|
|
@@ -18,34 +18,46 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<result property="createTime" column="create_time" />
|
|
|
<result property="updateBy" column="update_by" />
|
|
|
<result property="updateTime" column="update_time" />
|
|
|
+
|
|
|
+ <association property="tProjectPool" javaType="TProjectPool" resultMap="TProjectPoolResult" />
|
|
|
+
|
|
|
+ </resultMap>
|
|
|
+
|
|
|
+ <resultMap type="TProjectPool" id="TProjectPoolResult">
|
|
|
+ <result property="projectName" column="project_name" />
|
|
|
+ <result property="projectStage" column="project_stage" />
|
|
|
+ <result property="projectState" column="project_state" />
|
|
|
</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
|
|
|
+ select a.id, a.project_id, a.contacts, a.reality_up_date, a.up_person, a.up_way, a.up_content, a.mark, a.del_flag, a.create_by, a.create_time, a.update_by, a.update_time,
|
|
|
+ b.project_name, b.project_stage, b.project_state
|
|
|
+ from t_project_record a
|
|
|
+ left join t_project_pool b ON a.project_id = b.id
|
|
|
</sql>
|
|
|
|
|
|
<select id="selectTProjectRecordList" parameterType="TProjectRecord" resultMap="TProjectRecordResult">
|
|
|
<include refid="selectTProjectRecordVo"/>
|
|
|
<where>
|
|
|
- del_flag = 0
|
|
|
- <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>
|
|
|
+ a.del_flag = 0
|
|
|
+ <if test="projectId != null and projectId != ''"> and a.project_id = #{projectId}</if>
|
|
|
+ <if test="contacts != null and contacts != ''"> and a.contacts = #{contacts}</if>
|
|
|
+ <if test="realityUpDate != null "> and a.reality_up_date = #{realityUpDate}</if>
|
|
|
+ <if test="upPerson != null and upPerson != ''"> and a.up_person = #{upPerson}</if>
|
|
|
+ <if test="upWay != null and upWay != ''"> and a.up_way = #{upWay}</if>
|
|
|
</where>
|
|
|
</select>
|
|
|
|
|
|
<select id="selectTProjectRecordById" parameterType="String" resultMap="TProjectRecordResult">
|
|
|
<include refid="selectTProjectRecordVo"/>
|
|
|
- where id = #{id}
|
|
|
+ where a.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="projectId != null">project_id,</if>
|
|
|
<if test="contacts != null">contacts,</if>
|
|
|
<if test="realityUpDate != null">reality_up_date,</if>
|
|
|
<if test="upPerson != null">up_person,</if>
|
|
@@ -60,7 +72,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
</trim>
|
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
|
<if test="id != null">#{id},</if>
|
|
|
- <if test="porjectId != null">#{porjectId},</if>
|
|
|
+ <if test="projectId != null">#{projectId},</if>
|
|
|
<if test="contacts != null">#{contacts},</if>
|
|
|
<if test="realityUpDate != null">#{realityUpDate},</if>
|
|
|
<if test="upPerson != null">#{upPerson},</if>
|
|
@@ -78,7 +90,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<update id="updateTProjectRecord" parameterType="TProjectRecord">
|
|
|
update t_project_record
|
|
|
<trim prefix="SET" suffixOverrides=",">
|
|
|
- <if test="porjectId != null">porject_id = #{porjectId},</if>
|
|
|
+ <if test="projectId != null">project_id = #{projectId},</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>
|
|
@@ -114,9 +126,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
</foreach>
|
|
|
</update>
|
|
|
|
|
|
- <select id="listPorjectId" parameterType="String" resultMap="TProjectRecordResult">
|
|
|
+ <select id="listProjectId" parameterType="String" resultMap="TProjectRecordResult">
|
|
|
<include refid="selectTProjectRecordVo"/>
|
|
|
- where porject_id = #{porjectId} and del_flag = 0
|
|
|
+ where a.project_id = #{projectId} and a.del_flag = 0
|
|
|
</select>
|
|
|
|
|
|
|