Blame view

backend/bpm/src/main/resources/mapper/BpmServiceLogMapper.xml 770 Bytes
8ea9c133   陈威   初始化提交
1
2
3
4
5
6
7
8
9
10
11
12
13
<?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.hotent.bpm.persistence.dao.BpmServiceLogDao">
    <resultMap id="BpmCallLog" type="com.hotent.bpm.persistence.model.BpmServiceLog">
        <id property="id" column="ID_" jdbcType="VARCHAR"/>
        <result property="subject" column="SUBJECT_" jdbcType="VARCHAR"/>
        <result property="procDefId" column="PROC_DEF_ID_" jdbcType="VARCHAR"/>
        <result property="procInstId" column="PROC_INST_ID_" jdbcType="VARCHAR"/>
        <result property="nodeId" column="NODE_ID_" jdbcType="VARCHAR"/>
        <result property="status" column="STATUS_" jdbcType="NUMERIC"/>
    </resultMap>

</mapper>