TCmsModelFiledMapper.xml 1.1 KB

12345678910111213141516171819
  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.TCmsModelFiledMapper">
  4. <resultMap id="BaseResultMap" type="com.sooka.mybatis.model.TCmsModelFiled">
  5. <id column="filed_id" jdbcType="INTEGER" property="filedId" />
  6. <result column="model_id" jdbcType="INTEGER" property="modelId" />
  7. <result column="filed_name" jdbcType="VARCHAR" property="filedName" />
  8. <result column="filed_class" jdbcType="VARCHAR" property="filedClass" />
  9. <result column="filed_type" jdbcType="VARCHAR" property="filedType" />
  10. <result column="alias" jdbcType="VARCHAR" property="alias" />
  11. <result column="not_null" jdbcType="BIT" property="notNull" />
  12. <result column="filed_length" jdbcType="INTEGER" property="filedLength" />
  13. <result column="is_primary" jdbcType="BIT" property="isPrimary" />
  14. <result column="setting" jdbcType="VARCHAR" property="setting" />
  15. <result column="filed_value" jdbcType="LONGVARCHAR" property="filedValue" />
  16. </resultMap>
  17. </mapper>