TSysModuleMapper.xml 1007 B

12345678910111213141516
  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.TSysModuleMapper">
  4. <resultMap id="BaseResultMap" type="com.sooka.mybatis.model.TSysModule">
  5. <id column="id" jdbcType="INTEGER" property="id" />
  6. <result column="module_name" jdbcType="VARCHAR" property="moduleName" />
  7. <result column="is_enable" jdbcType="BIT" property="isEnable" />
  8. <result column="is_auto_expand" jdbcType="BIT" property="isAutoExpand" />
  9. <result column="url" jdbcType="VARCHAR" property="url" />
  10. <result column="icon_name" jdbcType="VARCHAR" property="iconName" />
  11. <result column="permission_key" jdbcType="VARCHAR" property="permissionKey" />
  12. <result column="pid" jdbcType="INTEGER" property="pid" />
  13. <result column="has_child" jdbcType="BIT" property="hasChild" />
  14. <result column="sort_no" jdbcType="INTEGER" property="sortNo" />
  15. </resultMap>
  16. </mapper>