Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
3024 mandeep.dh 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.crm.persistence.AgentMapper">
6
  <resultMap type="agent" id="agentResult">
7
    <id property="id" column="id"/>
8
  </resultMap>
9
 
10
  <select id="getAgent" parameterType="long" resultType="agent">
11
    SELECT * FROM agent
12
    WHERE id = #{agentId}
13
  </select>
14
 
15
  <select id="getAgentByEmailId" parameterType="String" resultType="agent">
16
    SELECT * FROM agent
17
    WHERE emailId = #{emailId}
18
  </select>
19
</mapper>