1234567891011121314151617181920212223 |
- <?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.lantone.dblayermbg.mapperdb2.WorkFlowLinkMapper">
- <!-- 通用查询映射结果 -->
- <resultMap id="BaseResultMap" type="com.lantone.dblayermbg.entity.appeal.WorkFlowLink">
- <id column="id" property="id"/>
- <result column="work_flow_id" property="workFlowId"/>
- <result column="work_flow_link_id" property="workFlowLinkId"/>
- <result column="work_link_now_node" property="workLinkNowNode"/>
- <result column="work_link_condition" property="workLinkCondition"/>
- <result column="work_link_next_node" property="workLinkNextNode"/>
- <result column="work_link_name" property="workLinkName"/>
- <result column="work_link_status" property="workLinkStatus"/>
- <result column="is_deleted" property="isDeleted"/>
- <result column="gmt_create" property="gmtCreate"/>
- <result column="gmt_modified" property="gmtModified"/>
- <result column="creator" property="creator"/>
- <result column="modifier" property="modifier"/>
- <result column="remark" property="remark"/>
- </resultMap>
- </mapper>
|