ProvinceMapper.xml 659 Bytes
<?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.runsa.portal.base.dao.ProvinceMapper" >
  <resultMap id="BaseResultMap" type="cn.runsa.portal.base.entity.Province" >
    <id column="prId" property="id" />
    <result column="coId" property="coid"/>
    <result column="prName" property="name"/>
    <result column="prSort" property="sort"/>
  </resultMap>
  <select id="selectByCoId" resultMap="BaseResultMap"  parameterType="java.lang.Integer">
	SELECT *
	FROM
	mtProvince
	where coId=#{coid}
	order by prSort ASC
  </select>
</mapper>