BaseWorkFlowLinkMapper.xml 1.2 KB

1234567891011121314151617181920212223
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  3. <mapper namespace="com.lantone.dblayermbg.mapperdb2.WorkFlowLinkMapper">
  4. <!-- 通用查询映射结果 -->
  5. <resultMap id="BaseResultMap" type="com.lantone.dblayermbg.entity.appeal.WorkFlowLink">
  6. <id column="id" property="id"/>
  7. <result column="work_flow_id" property="workFlowId"/>
  8. <result column="work_flow_link_id" property="workFlowLinkId"/>
  9. <result column="work_link_now_node" property="workLinkNowNode"/>
  10. <result column="work_link_condition" property="workLinkCondition"/>
  11. <result column="work_link_next_node" property="workLinkNextNode"/>
  12. <result column="work_link_name" property="workLinkName"/>
  13. <result column="work_link_status" property="workLinkStatus"/>
  14. <result column="is_deleted" property="isDeleted"/>
  15. <result column="gmt_create" property="gmtCreate"/>
  16. <result column="gmt_modified" property="gmtModified"/>
  17. <result column="creator" property="creator"/>
  18. <result column="modifier" property="modifier"/>
  19. <result column="remark" property="remark"/>
  20. </resultMap>
  21. </mapper>