Subversion Repositories SmartDukaan

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1946 chandransh 1
<?xml version="1.0" encoding="UTF-8"?>
2
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" 
3
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
4
 
5
<mapper namespace="in.shop2020.payment.persistence.PaymentGatewayMapper">
6
 
7
  <resultMap type="gateway" id="gatewayResult">
8
    <id property="id" column="id"/>
9
    <collection property="attributes" javaType="ArrayList" column="id" ofType="gatewayAttribute" select="getAttributesForGateway"/>
10
  </resultMap>
11
 
12
  <select id="getPaymentGateway" parameterType="int" resultMap="gatewayResult">
13
    SELECT * FROM paymentgateway
14
    WHERE id=#{id}
15
  </select>
16
 
17
  <select id="getAttributesForGateway" parameterType="int" resultType="gatewayAttribute">
18
    SELECT * FROM gatewayattribute where payment_gateway_id = #{id}
19
  </select>
20
</mapper>