16 lines
641 B
XML
16 lines
641 B
XML
<?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.yunzhupaas.mapper.FlowFormMapper">
|
|
|
|
<resultMap id="flowInfo" type="com.yunzhupaas.base.model.flow.FlowTempInfoModel">
|
|
<id column="F_Id" property="id"/>
|
|
<result column="F_EnCode" property="enCode"/>
|
|
</resultMap>
|
|
|
|
|
|
<select id="findFLowInfo" parameterType="String" resultMap="flowInfo">
|
|
SELECT ft.F_En_Code as F_EnCode,ft.F_Id as F_Id,F_Enabled_Mark as enabledMark FROM flow_template ft where ft.F_Id =#{tempId}
|
|
</select>
|
|
|
|
</mapper>
|