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.
25 lines
1.2 KiB
25 lines
1.2 KiB
|
6 years ago
|
<?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.UserPointActionLogDao">
|
||
|
|
|
||
|
|
<resultMap type="com.epmet.entity.UserPointActionLogEntity" id="userPointActionLogMap">
|
||
|
|
<result property="id" column="ID"/>
|
||
|
|
<result property="userId" column="USER_ID"/>
|
||
|
|
<result property="customerId" column="CUSTOMER_ID"/>
|
||
|
|
<result property="actionFlag" column="ACTION_FLAG"/>
|
||
|
|
<result property="eventId" column="EVENT_ID"/>
|
||
|
|
<result property="eventStatement" column="EVENT_STATEMENT"/>
|
||
|
|
<result property="eventName" column="EVENT_NAME"/>
|
||
|
|
<result property="point" column="POINT"/>
|
||
|
|
<result property="operatorAgencyId" column="OPERATOR_AGENCY_ID"/>
|
||
|
|
<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>
|