<?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"><mappernamespace="io.hmit.modules.activiti.dao.ProcessBizRouteDao"><resultMapid="ProcessBizRouteEntity"type="io.hmit.modules.activiti.entity.ProcessBizRouteEntity"><resultproperty="id"column="ID"/><resultproperty="procDefId"column="PROC_DEF_ID"/><resultproperty="bizRoute"column="BIZ_ROUTE"/><resultproperty="procDefKey"column="PROC_DEF_KEY"/><resultproperty="version"column="VERSION"/></resultMap><selectid="getProcDefBizRoute"resultMap="ProcessBizRouteEntity"> select * from tb_process_biz_route where PROC_DEF_ID = #{proDefId}</select><selectid="getLatestProcDefBizRoute"resultMap="ProcessBizRouteEntity"> select * from tb_process_biz_route where PROC_DEF_KEY = #{procDefKey} order by version desc</select></mapper>