18 lines
812 B
XML
18 lines
812 B
XML
|
|
<?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="com.yfd.platform.env.mapper.SdCountryBMapper">
|
||
|
|
|
||
|
|
<resultMap id="BaseResultMap" type="com.yfd.platform.env.domain.SdCountryB">
|
||
|
|
<id column="NO" property="no"/>
|
||
|
|
<result column="COUNTRY_NAME" property="countryName"/>
|
||
|
|
<result column="COUNTRY_CODE" property="countryCode"/>
|
||
|
|
<result column="CONTINENT_CODE" property="continentCode"/>
|
||
|
|
<result column="CONTINENT_NAME" property="continentName"/>
|
||
|
|
<result column="CONTINENT_TYPE" property="continentType"/>
|
||
|
|
<result column="ENABLED" property="enabled"/>
|
||
|
|
<result column="ORDERINDEX" property="orderIndex"/>
|
||
|
|
</resultMap>
|
||
|
|
|
||
|
|
</mapper>
|