1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| <?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.zt.modules.workflow.dao.WfRunInstanceDao">
| <select id="getFlowInstance" resultType="com.zt.modules.workflow.model.WfRunInstance">
| SELECT * FROM WF_RUN_INSTANCE
| WHERE is_delete = 0
| <if test="wfCode!=null">
| and (CONCAT('',flow_id ) = #{wfCode} or flow_code = #{wfCode})
| </if>
| <if test="bizId!=null">
| and biz_id = #{bizId}
| </if>
| LIMIT 0,1
| </select>
| </mapper>
|
|