WebConfigMapper.xml 823 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="cn.cslg.pas.mapper.WebConfigMapper">
  6. <resultMap id="BaseResultMap" type="cn.cslg.pas.domain.WebConfig">
  7. <id property="id" column="id" jdbcType="INTEGER"/>
  8. <result property="webName" column="web_name" jdbcType="VARCHAR"/>
  9. <result property="webAddress" column="web_address" jdbcType="VARCHAR"/>
  10. <result property="webAccount" column="web_account" jdbcType="VARCHAR"/>
  11. <result property="webPassword" column="web_password" jdbcType="VARCHAR"/>
  12. </resultMap>
  13. <sql id="Base_Column_List">
  14. id,web_name,web_address,
  15. web_account,web_password
  16. </sql>
  17. </mapper>