MessagesMapper.xml 810 B

12345678910111213141516171819
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE mapper
  3. PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
  4. "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  5. <mapper namespace="com.zhentao.mapper.MessagesMapper">
  6. <resultMap id="BaseResultMap" type="com.zhentao.pojo.Messages">
  7. <id property="messageId" column="message_id" jdbcType="BIGINT"/>
  8. <result property="userId" column="user_id" jdbcType="BIGINT"/>
  9. <result property="content" column="content" jdbcType="VARCHAR"/>
  10. <result property="isRead" column="is_read" jdbcType="TINYINT"/>
  11. <result property="createdAt" column="created_at" jdbcType="TIMESTAMP"/>
  12. </resultMap>
  13. <sql id="Base_Column_List">
  14. message_id,user_id,content,
  15. is_read,created_at
  16. </sql>
  17. </mapper>