|
@@ -4,7 +4,7 @@
|
|
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
|
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
|
<mapper namespace="com.jy.flow.mapper.WarmFlowMapper">
|
|
<mapper namespace="com.jy.flow.mapper.WarmFlowMapper">
|
|
|
|
|
|
- <resultMap type="com.jy.flow.vo.FlowTaskVo" id="FlowTaskResult">
|
|
|
|
|
|
+ <resultMap type="com.jy.flow.model.vo.FlowTaskVo" id="FlowTaskResult">
|
|
<result property="id" column="id"/>
|
|
<result property="id" column="id"/>
|
|
<result property="nodeCode" column="node_code"/>
|
|
<result property="nodeCode" column="node_code"/>
|
|
<result property="nodeName" column="node_name"/>
|
|
<result property="nodeName" column="node_name"/>
|
|
@@ -165,13 +165,13 @@
|
|
WHERE
|
|
WHERE
|
|
a.type = 4
|
|
a.type = 4
|
|
<if test="task.flowName != null and task.flowName != ''">
|
|
<if test="task.flowName != null and task.flowName != ''">
|
|
- and c.nick_name like concat('%',#{task.flowName}, '%')
|
|
|
|
|
|
+ and c.nick_name like concat('%',#{task.flowName}, '%')
|
|
</if>
|
|
</if>
|
|
<if test="task.nodeName != null and task.nodeName != ''">
|
|
<if test="task.nodeName != null and task.nodeName != ''">
|
|
- and b.node_name like concat('%',#{task.nodeName}, '%')
|
|
|
|
|
|
+ and b.node_name like concat('%',#{task.nodeName}, '%')
|
|
</if>
|
|
</if>
|
|
<if test="task.nodeType != null">
|
|
<if test="task.nodeType != null">
|
|
- and b.node_type = #{task.nodeType}
|
|
|
|
|
|
+ and b.node_type = #{task.nodeType}
|
|
</if>
|
|
</if>
|
|
ORDER BY create_time DESC
|
|
ORDER BY create_time DESC
|
|
</select>
|
|
</select>
|