24 lines
835 B
XML
24 lines
835 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.SdPrhyrltnBMapper">
|
||
|
|
|
||
|
|
<resultMap id="BaseResultMap" type="com.yfd.platform.env.domain.SdPrhyrltnB">
|
||
|
|
<id column="STCD" property="stcd"/>
|
||
|
|
<result column="HYCD" property="hycd"/>
|
||
|
|
<result column="TM" property="tm"/>
|
||
|
|
<result column="RC" property="rc"/>
|
||
|
|
</resultMap>
|
||
|
|
|
||
|
|
<select id="selectStcdListByHycd" resultType="java.lang.String">
|
||
|
|
SELECT DISTINCT STCD FROM SD_PRHYRLTN_B
|
||
|
|
WHERE HYCD = #{hycd}
|
||
|
|
</select>
|
||
|
|
|
||
|
|
<select id="selectHycdListByStcd" resultType="java.lang.String">
|
||
|
|
SELECT DISTINCT HYCD FROM SD_PRHYRLTN_B
|
||
|
|
WHERE STCD = #{stcd}
|
||
|
|
</select>
|
||
|
|
|
||
|
|
</mapper>
|