PortalServiceLogMapper.xml 1.65 KB
<?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.service.choreography.dao.PortalServiceLogDao">

    <!-- 通用查询映射结果 -->
    <resultMap id="BaseResultMap" type="com.hotent.service.choreography.model.PortalServiceLog">
        <id column="id_" property="id" />
        <result column="alias_" property="alias" />
		<result column="subject_" property="subject" />
		<result column="proc_def_id_" property="procDefId" />
		<result column="proc_def_key_" property="procDefKey" />
		<result column="proc_def_name_" property="procDefName" />
		<result column="task_id_" property="taskId" />
		<result column="sup_inst_id_" property="supInstId" />
		<result column="proc_inst_id_" property="procInstId" />
		<result column="node_id_" property="nodeId" />
		<result column="node_name_" property="nodeName" />
		<result column="user_id_" property="userId" />
		<result column="user_account_" property="userAccount" />
		<result column="user_name_" property="userName" />
		<result column="type_" property="type" />
		<result column="is_success_" property="isSuccess" />
		<result column="response_" property="response" />
		<result column="call_time_" property="callTime" />
		<result column="revision_" property="revision" />
    </resultMap>

    <!-- 通用查询结果列 -->
    <sql id="Base_Column_List">
        id_, alias_, subject_, proc_def_id_, proc_def_key_, proc_def_name_, task_id_, sup_inst_id_, proc_inst_id_, node_id_, node_name_, user_id_, user_account_, user_name_, type_, is_success_, response_, call_time_, revision_
    </sql>

</mapper>