|
@@ -53,7 +53,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
</where>
|
|
</where>
|
|
order by create_time desc
|
|
order by create_time desc
|
|
</select>
|
|
</select>
|
|
-
|
|
|
|
|
|
+
|
|
<select id="selectBpmProcessByProcessId" parameterType="Long" resultMap="BpmProcessResult">
|
|
<select id="selectBpmProcessByProcessId" parameterType="Long" resultMap="BpmProcessResult">
|
|
<include refid="selectBpmProcessVo"/>
|
|
<include refid="selectBpmProcessVo"/>
|
|
where process_id = #{processId}
|
|
where process_id = #{processId}
|
|
@@ -74,6 +74,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
<if test="processJson != null">process_json,</if>
|
|
<if test="processJson != null">process_json,</if>
|
|
<if test="processXmlContent != null">process_xml_content,</if>
|
|
<if test="processXmlContent != null">process_xml_content,</if>
|
|
<if test="processXmlPath != null">process_xml_path,</if>
|
|
<if test="processXmlPath != null">process_xml_path,</if>
|
|
|
|
+ <if test="createById != null">create_by_id,</if>
|
|
<if test="createBy != null">create_by,</if>
|
|
<if test="createBy != null">create_by,</if>
|
|
<if test="createTime != null">create_time,</if>
|
|
<if test="createTime != null">create_time,</if>
|
|
<if test="updateBy != null">update_by,</if>
|
|
<if test="updateBy != null">update_by,</if>
|
|
@@ -94,6 +95,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
<if test="processJson != null">#{processJson},</if>
|
|
<if test="processJson != null">#{processJson},</if>
|
|
<if test="processXmlContent != null">#{processXmlContent},</if>
|
|
<if test="processXmlContent != null">#{processXmlContent},</if>
|
|
<if test="processXmlPath != null">#{processXmlPath},</if>
|
|
<if test="processXmlPath != null">#{processXmlPath},</if>
|
|
|
|
+ <if test="createById != null">#{createById},</if>
|
|
<if test="createBy != null">#{createBy},</if>
|
|
<if test="createBy != null">#{createBy},</if>
|
|
<if test="createTime != null">#{createTime},</if>
|
|
<if test="createTime != null">#{createTime},</if>
|
|
<if test="updateBy != null">#{updateBy},</if>
|
|
<if test="updateBy != null">#{updateBy},</if>
|
|
@@ -118,8 +120,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
<if test="processJson != null">process_json = #{processJson},</if>
|
|
<if test="processJson != null">process_json = #{processJson},</if>
|
|
<if test="processXmlContent != null">process_xml_content = #{processXmlContent},</if>
|
|
<if test="processXmlContent != null">process_xml_content = #{processXmlContent},</if>
|
|
<if test="processXmlPath != null">process_xml_path = #{processXmlPath},</if>
|
|
<if test="processXmlPath != null">process_xml_path = #{processXmlPath},</if>
|
|
|
|
+ <if test="createById != null">create_by_id= #{createById},</if>
|
|
<if test="createBy != null">create_by = #{createBy},</if>
|
|
<if test="createBy != null">create_by = #{createBy},</if>
|
|
<if test="createTime != null">create_time = #{createTime},</if>
|
|
<if test="createTime != null">create_time = #{createTime},</if>
|
|
|
|
+ <if test="updateById != null">update_by_id= #{updateById},</if>
|
|
<if test="updateBy != null">update_by = #{updateBy},</if>
|
|
<if test="updateBy != null">update_by = #{updateBy},</if>
|
|
<if test="updateTime != null">update_time = #{updateTime},</if>
|
|
<if test="updateTime != null">update_time = #{updateTime},</if>
|
|
<if test="delFlag != null">del_flag = #{delFlag},</if>
|
|
<if test="delFlag != null">del_flag = #{delFlag},</if>
|