xm
2024-06-14 722af26bc6fec32bb289b1df51a9016a4935610f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?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.dl.workflow.mapper.WfDeployFormMapper">
 
    <resultMap type="com.dl.workflow.domain.WfDeployForm" id="WfDeployFormResult">
        <result property="deployId" column="deploy_id"/>
        <result property="formKey" column="form_key"/>
        <result property="nodeKey" column="node_key"/>
        <result property="nodeName" column="node_name"/>
        <result property="content" column="content"/>
    </resultMap>
 
</mapper>