Blame view

backend/portal/src/main/resources/mapper/MessageLogMapper.xml 1.12 KB
8d73e917   陈威   初始化提交
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?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.portal.persistence.dao.MessageLogDao">
	<resultMap id="MessageLog" type="com.hotent.portal.model.MessageLog">
		<id property="id" column="ID_" jdbcType="VARCHAR"/>
		<result property="subject" column="SUBJECT_" jdbcType="VARCHAR"/>
		<result property="type" column="TYPE_" jdbcType="VARCHAR"/>
		<result property="senderId" column="SENDER_ID_" jdbcType="VARCHAR"/>
		<result property="senderName" column="SENDER_NAME_" jdbcType="VARCHAR"/>
		<result property="receivers" column="RECEIVERS_" jdbcType="VARCHAR"/>
		<result property="isSuccess" column="IS_SUCCESS_" jdbcType="NUMERIC"/>
		<result property="exception" column="EXCEPTION_" jdbcType="VARCHAR"/>
		<result property="createTime" column="CREATE_TIME_" jdbcType="TIMESTAMP"/>
		<result property="content" column="CONTENT_" jdbcType="LONGVARCHAR"/>
		<result property="msgVo" column="MSG_VO_" jdbcType="LONGVARCHAR"/>
		<result property="retryCount" column="RETRY_COUNT_" jdbcType="NUMERIC"/>
	</resultMap>
</mapper>