TCmsTopicMapper.xml 1.2 KB

123456789101112131415161718192021
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  3. <mapper namespace="com.sooka.mybatis.mapper.TCmsTopicMapper">
  4. <resultMap id="BaseResultMap" type="com.sooka.mybatis.model.TCmsTopic">
  5. <!--
  6. WARNING - @mbg.generated
  7. -->
  8. <id column="topic_id" jdbcType="INTEGER" property="topicId" />
  9. <result column="category_ids" jdbcType="VARCHAR" property="categoryIds" />
  10. <result column="topic_name" jdbcType="VARCHAR" property="topicName" />
  11. <result column="short_name" jdbcType="VARCHAR" property="shortName" />
  12. <result column="keywords" jdbcType="VARCHAR" property="keywords" />
  13. <result column="description" jdbcType="VARCHAR" property="description" />
  14. <result column="title_img" jdbcType="VARCHAR" property="titleImg" />
  15. <result column="content_img" jdbcType="VARCHAR" property="contentImg" />
  16. <result column="topic_tpl" jdbcType="VARCHAR" property="topicTpl" />
  17. <result column="sort_id" jdbcType="INTEGER" property="sortId" />
  18. <result column="site_id" jdbcType="INTEGER" property="siteId" />
  19. <result column="is_recommend" jdbcType="BIT" property="isRecommend" />
  20. </resultMap>
  21. </mapper>