SmsLogMapper.xml
875 Bytes
<?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.codeez.mapper.SmsLogMapper">
<resultMap id="smsLogDTOMap" type="org.thingsboard.server.common.data.yunteng.dto.SmsLogDTO" >
<result property="id" column="id"/>
<result property="type" column="type"/>
<result property="status" column="status"/>
<result property="sendTime" column="send_time"/>
<result property="toPhone" column="to_phone"/>
<result property="templateParam" column="template_param"
typeHandler="com.baomidou.mybatisplus.extension.handlers.JacksonTypeHandler"/>
<result property="tenantId" column="tenant_id"/>
<result property="messageTemplateId" column="message_template_id"/>
</resultMap>
</mapper>