12345678910111213141516171819 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!DOCTYPE mapper
- PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
- "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
- <mapper namespace="cn.cslg.pas.mapper.WebConfigMapper">
- <resultMap id="BaseResultMap" type="cn.cslg.pas.domain.WebConfig">
- <id property="id" column="id" jdbcType="INTEGER"/>
- <result property="webName" column="web_name" jdbcType="VARCHAR"/>
- <result property="webAddress" column="web_address" jdbcType="VARCHAR"/>
- <result property="webAccount" column="web_account" jdbcType="VARCHAR"/>
- <result property="webPassword" column="web_password" jdbcType="VARCHAR"/>
- </resultMap>
- <sql id="Base_Column_List">
- id,web_name,web_address,
- web_account,web_password
- </sql>
- </mapper>
|