You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
<?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.epmet.dao.LogOperationDao">
|
|
|
|
|
|
|
|
<resultMap type="com.epmet.entity.LogOperationEntity" id="logOperationMap">
|
|
|
|
<result property="id" column="ID"/>
|
|
|
|
<result property="type" column="TYPE"/>
|
|
|
|
<result property="typeDisplay" column="TYPE_DISPLAY"/>
|
|
|
|
<result property="content" column="CONTENT"/>
|
|
|
|
<result property="targetId" column="TARGET_ID"/>
|
|
|
|
<result property="category" column="CATEGORY"/>
|
|
|
|
<result property="operatorId" column="OPERATOR_ID"/>
|
|
|
|
<result property="operatingTime" column="OPERATING_TIME"/>
|
|
|
|
<result property="delFlag" column="DEL_FLAG"/>
|
|
|
|
<result property="revision" column="REVISION"/>
|
|
|
|
<result property="createdBy" column="CREATED_BY"/>
|
|
|
|
<result property="createdTime" column="CREATED_TIME"/>
|
|
|
|
<result property="updatedBy" column="UPDATED_BY"/>
|
|
|
|
<result property="updatedTime" column="UPDATED_TIME"/>
|
|
|
|
</resultMap>
|
|
|
|
|
|
|
|
|
|
|
|
</mapper>
|