TCmsSiteMapper.xml 1.1 KB

123456789101112131415161718
  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.TCmsSiteMapper">
  4. <resultMap id="BaseResultMap" type="com.sooka.mybatis.model.TCmsSite">
  5. <id column="site_id" jdbcType="INTEGER" property="siteId" />
  6. <result column="site_name" jdbcType="VARCHAR" property="siteName" />
  7. <result column="domain" jdbcType="VARCHAR" property="domain" />
  8. <result column="language" jdbcType="CHAR" property="language" />
  9. <result column="template" jdbcType="VARCHAR" property="template" />
  10. <result column="title" jdbcType="VARCHAR" property="title" />
  11. <result column="keyword" jdbcType="VARCHAR" property="keyword" />
  12. <result column="is_mobile" jdbcType="BIT" property="isMobile" />
  13. <result column="mobile_tpl" jdbcType="VARCHAR" property="mobileTpl" />
  14. <result column="status" jdbcType="BIT" property="status" />
  15. <result column="description" jdbcType="LONGVARCHAR" property="description" />
  16. <result column="logo" jdbcType="VARCHAR" property="logo" />
  17. </resultMap>
  18. </mapper>